[Checkins] SVN: z3c.testsetup/trunk/buildout.cfg We have to pin-down ZODB3 for tests as ZODB3 >= 3.10 is not compatible

Uli Fouquet uli at gnufix.de
Sun Jul 25 10:29:28 EDT 2010


Log message for revision 115080:
  We have to pin-down ZODB3 for tests as ZODB3 >= 3.10 is not compatible
  with Python 2.4 any more but buildbots will try to run tests also
  against 2.4. z3c.testsetup itself is happy with newer versions of
  ZODB3, if only Python >= 2.5 is used.
  
  There might be further complications of that kind in future. For
  real tests the pinning could be disabled.
  

Changed:
  U   z3c.testsetup/trunk/buildout.cfg

-=-
Modified: z3c.testsetup/trunk/buildout.cfg
===================================================================
--- z3c.testsetup/trunk/buildout.cfg	2010-07-25 14:25:41 UTC (rev 115079)
+++ z3c.testsetup/trunk/buildout.cfg	2010-07-25 14:29:28 UTC (rev 115080)
@@ -3,7 +3,12 @@
 parts = test
 extends = http://download.zope.org/zopetoolkit/index/1.0a2/ztk-versions.cfg
           http://download.zope.org/zopetoolkit/index/1.0a2/zopeapp-versions.cfg
+versions = versions
 
+[versions]
+ZODB3 = 3.9.4 # XXX: to keep buildbots happy. ZODB3 requires Python >=
+	      # 2.5 since 3.10 version. This is only needed for
+	      # Python2.4.
 
 [test]
 recipe = zc.recipe.testrunner



More information about the checkins mailing list