[Checkins] SVN: z3c.zalchemy/trunk/ Moved the development version dependency out of setup.py and into buildout.cfg - this so that it I can continue to use the trunk in my buildout which only uses the most recent "release" of SQLAlchemy and developers can continue to develop against the dev version.

Darryl Cousins darryl at darrylcousins.net.nz
Sun Jan 27 17:59:43 EST 2008


Log message for revision 83264:
  Moved the development version dependency out of setup.py and into buildout.cfg - this so that it I can continue to use the trunk in my buildout which only uses the most recent "release" of SQLAlchemy and developers can continue to develop against the dev version.

Changed:
  U   z3c.zalchemy/trunk/buildout.cfg
  U   z3c.zalchemy/trunk/setup.py

-=-
Modified: z3c.zalchemy/trunk/buildout.cfg
===================================================================
--- z3c.zalchemy/trunk/buildout.cfg	2008-01-27 00:41:47 UTC (rev 83263)
+++ z3c.zalchemy/trunk/buildout.cfg	2008-01-27 22:59:42 UTC (rev 83264)
@@ -1,7 +1,11 @@
 [buildout]
 parts = test
 develop = .
+versions = versions
 
+[versions]
+SQLAlchemy = 0.4.2p4dev
+
 [test]
 recipe = zc.recipe.testrunner
 eggs = z3c.zalchemy [test]

Modified: z3c.zalchemy/trunk/setup.py
===================================================================
--- z3c.zalchemy/trunk/setup.py	2008-01-27 00:41:47 UTC (rev 83263)
+++ z3c.zalchemy/trunk/setup.py	2008-01-27 22:59:42 UTC (rev 83264)
@@ -20,7 +20,7 @@
       include_package_data = True,
       zip_safe=False,
       install_requires=['setuptools',
-                        'SQLAlchemy>=0.4.2p4dev',
+                        'SQLAlchemy>=0.4.2',
                         'ZODB3',
                         'zope.component',
                         'zope.interface',



More information about the Checkins mailing list