[Checkins] SVN: ZODB3/trunk/ Added back test extra

jim cvs-admin at zope.org
Sun Dec 2 15:16:57 UTC 2012


Log message for revision 128469:
  Added back test extra

Changed:
  U   ZODB3/trunk/CHANGES.txt
  U   ZODB3/trunk/buildout.cfg
  U   ZODB3/trunk/setup.py

-=-
Modified: ZODB3/trunk/CHANGES.txt
===================================================================
--- ZODB3/trunk/CHANGES.txt	2012-12-02 15:03:32 UTC (rev 128468)
+++ ZODB3/trunk/CHANGES.txt	2012-12-02 15:16:57 UTC (rev 128469)
@@ -2,6 +2,14 @@
  Change History
 ================
 
+3.11.0a2 (2012-12-02)
+=====================
+
+Fixed: The ZODB3 "test" extra was inadvertently removed.
+
+       Note that the text extra exists soley to allow other packages
+       to use ``ZODB [test]`` in their test dependencies.
+
 3.11.0a1 (2012-12-01)
 =====================
 

Modified: ZODB3/trunk/buildout.cfg
===================================================================
--- ZODB3/trunk/buildout.cfg	2012-12-02 15:03:32 UTC (rev 128468)
+++ ZODB3/trunk/buildout.cfg	2012-12-02 15:16:57 UTC (rev 128469)
@@ -10,7 +10,9 @@
 [test]
 recipe = zc.recipe.testrunner
 eggs =
+    ZODB3 [test]
     persistent [test]
+    BTrees [test]
     ZODB [test]
     ZEO [test]
 initialization =

Modified: ZODB3/trunk/setup.py
===================================================================
--- ZODB3/trunk/setup.py	2012-12-02 15:03:32 UTC (rev 128468)
+++ ZODB3/trunk/setup.py	2012-12-02 15:16:57 UTC (rev 128469)
@@ -43,8 +43,6 @@
     open('CHANGES.txt').read()
     )
 
-tests_require = ['ZEO [test]', 'ZODB [test]', 'persistent [test]'],
-
 setup(name="ZODB3",
       version=VERSION,
       maintainer="Zope Foundation and Contributors",
@@ -61,4 +59,10 @@
           'BTrees >=4.0.0dev, <4.1dev',
           'transaction'],
       zip_safe = False,
+      extras_require = dict(
+          test=['ZEO [test]',
+                'ZODB [test]',
+                'BTrees [test]',
+                'persistent [test]'],
+          )
       )



More information about the checkins mailing list