[Checkins] SVN: grok/trunk/ Relax some version requirements after some more testing.

Martijn Faassen faassen at infrae.com
Tue Aug 21 18:36:25 EDT 2007


Log message for revision 79107:
  Relax some version requirements after some more testing.
  

Changed:
  U   grok/trunk/buildout.cfg
  U   grok/trunk/setup.py

-=-
Modified: grok/trunk/buildout.cfg
===================================================================
--- grok/trunk/buildout.cfg	2007-08-21 22:11:45 UTC (rev 79106)
+++ grok/trunk/buildout.cfg	2007-08-21 22:36:25 UTC (rev 79107)
@@ -3,11 +3,14 @@
 parts = docs grokwiki zopectl data test
 find-links = http://download.zope.org/distribution/
 index = http://download.zope.org/ppix
+versions = release-0.10
 
+[release-0.10]
+ZODB3 = 3.8.0b2
+
 [docs]
 recipe = zc.recipe.egg
 eggs = grokdocs
-       ZODB3 == 3.8.0b2
 
 [grokwiki]
 recipe = zc.zope3recipes>=0.5.3:application

Modified: grok/trunk/setup.py
===================================================================
--- grok/trunk/setup.py	2007-08-21 22:11:45 UTC (rev 79106)
+++ grok/trunk/setup.py	2007-08-21 22:36:25 UTC (rev 79107)
@@ -5,6 +5,8 @@
 # make sure we only depend on versions for which there is a windows
 # binary. In some cases this means we rely on an earlier version than the
 # latest/greatest version as no Windows binary has been released for it yet.
+# in some cases we also need to do this for non-binary dependencies, as
+# more recent versions rely on versions for which no binary eggs exist.
 
 def read(*rnames):
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
@@ -49,7 +51,7 @@
                       'zope.app.container == 3.5.0.a1',
                       'zope.app.folder',
                       'zope.app.intid',
-                      # XXX not binary, but needed for ZODB 3.8.0b22
+                      # not binary, but needed for ZODB 3.8.0b2
                       'zope.app.keyreference == 3.4.0a1',
                       'zope.app.pagetemplate',
                       'zope.app.publication',
@@ -66,10 +68,8 @@
                       'zope.deprecation',
                       'zope.event',
                       'zope.formlib',
-                      # XXX there is a later 3.4.0 release
-                      'zope.hookable == 3.4.0a1',
-                      # XXX there is a later 3.4.0 release
-                      'zope.i18nmessageid == 3.4.0a1',
+                      'zope.hookable',
+                      'zope.i18nmessageid',
                       'zope.interface == 3.4.0',
                       'zope.lifecycleevent',
                       'zope.pagetemplate',
@@ -81,6 +81,6 @@
                       'zope.traversing',
                       'zope.testbrowser',
                       'zc.catalog',
-                      'z3c.flashmessage >=1.0dev-r77761',
+                      'z3c.flashmessage >=1.0b1',
                       ],
 )



More information about the Checkins mailing list