2010/9/21 Michael Howitz <[email protected]>: > Am 20.09.2010 um 17:22 schrieb Tres Seaver: > [...] >> Right, and we should be adding zope.testrunner to the ZTK trunk. > > Done in r116694. But this change might lead to other problems: When updating > to zope.testing 3.10.0 in ztk-versions.cfg I get the following error when > running buildout: > > The version, 3.10.0, is not consistent with the requirement, > 'zope.testing>=3.6.0,<3.10.0'. > While: > Installing. > Getting section test-ztk. > Initializing section test-ztk. > Installing recipe z3c.recipe.compattest. > Error: Bad version 3.10.0
Need to update zc.recipe.testrunner to 1.3.0 that is compatible with zope.testing 3.10. The patch doing that is attached. Gediminas
Index: ztk-versions.cfg =================================================================== --- ztk-versions.cfg (revision 116706) +++ ztk-versions.cfg (working copy) @@ -62,7 +62,8 @@ zope.structuredtext = 3.5.0 zope.tal = 3.5.2 zope.tales = 3.5.1 -zope.testing = 3.9.5 +zope.testing = 3.10.0 +zope.testrunner = 4.0.0b5 zope.traversing = 3.13 zope.viewlet = 3.7.2 @@ -79,17 +80,19 @@ py = 1.3.2 Pygments = 1.3.1 python-gettext = 1.0 +python-subunit = 0.0.6 pytz = 2010l RestrictedPython = 3.6.0 setuptools = 0.6c11 Sphinx = 1.0.3 +testtools = 0.9.6 transaction = 1.1.0 z3c.recipe.sphinxdoc = 0.0.8 zc.buildout = 1.4.4 zc.lockfile = 1.0.0 ZConfig = 2.8.0 zc.recipe.egg = 1.2.2 -zc.recipe.testrunner = 1.2.1 +zc.recipe.testrunner = 1.3.0 zc.resourcelibrary = 1.3.1 zdaemon = 2.0.4 ZODB3 = 3.9.5
_______________________________________________ Zope-Dev maillist - [email protected] https://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - https://mail.zope.org/mailman/listinfo/zope-announce https://mail.zope.org/mailman/listinfo/zope )
