[Checkins] SVN: zc.buildout/trunk/zc.recipe.egg_/ Fixed dependency information.

Jim Fulton jim at zope.com
Wed Mar 18 15:57:12 EDT 2009


Log message for revision 98246:
  Fixed dependency information.
  

Changed:
  U   zc.buildout/trunk/zc.recipe.egg_/CHANGES.txt
  U   zc.buildout/trunk/zc.recipe.egg_/setup.py

-=-
Modified: zc.buildout/trunk/zc.recipe.egg_/CHANGES.txt
===================================================================
--- zc.buildout/trunk/zc.recipe.egg_/CHANGES.txt	2009-03-18 18:44:29 UTC (rev 98245)
+++ zc.buildout/trunk/zc.recipe.egg_/CHANGES.txt	2009-03-18 19:57:12 UTC (rev 98246)
@@ -1,6 +1,11 @@
 Change History
 **************
 
+1.2.2 (2009-03-18)
+==================
+
+- Fixed a dependency information. zc.buildout >1.2.0 is required.
+
 1.2.1 (2009-03-18)
 ==================
 

Modified: zc.buildout/trunk/zc.recipe.egg_/setup.py
===================================================================
--- zc.buildout/trunk/zc.recipe.egg_/setup.py	2009-03-18 18:44:29 UTC (rev 98245)
+++ zc.buildout/trunk/zc.recipe.egg_/setup.py	2009-03-18 19:57:12 UTC (rev 98246)
@@ -66,7 +66,7 @@
     package_dir = {'':'src'},
     namespace_packages = ['zc', 'zc.recipe'],
     install_requires = [
-        'zc.buildout >=1.0.6',
+        'zc.buildout >=1.2.0',
         'setuptools'],
     tests_require = ['zope.testing'],
     test_suite = name+'.tests.test_suite',



More information about the Checkins mailing list