[Checkins] SVN: zodbcode/trunk/ - Added test extra to declare test dependency on `zope.testing`.

Michael Howitz mh at gocept.com
Thu Sep 16 11:16:56 EDT 2010


Log message for revision 116460:
  - Added test extra to declare test dependency on `zope.testing`.
  
  

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

-=-
Modified: zodbcode/trunk/CHANGES.txt
===================================================================
--- zodbcode/trunk/CHANGES.txt	2010-09-16 15:15:15 UTC (rev 116459)
+++ zodbcode/trunk/CHANGES.txt	2010-09-16 15:16:56 UTC (rev 116460)
@@ -2,6 +2,12 @@
 CHANGES
 =======
 
+3.4.1 (unreleased)
+------------------
+
+- Added test extra to declare test dependency on `zope.testing`.
+
+
 3.4.0 (2007-10-10)
 ------------------
 

Modified: zodbcode/trunk/buildout.cfg
===================================================================
--- zodbcode/trunk/buildout.cfg	2010-09-16 15:15:15 UTC (rev 116459)
+++ zodbcode/trunk/buildout.cfg	2010-09-16 15:16:56 UTC (rev 116460)
@@ -2,8 +2,6 @@
 develop = .
 parts = test
 
-find-links = http://download.zope.org/distribution/
-
 [test]
 recipe = zc.recipe.testrunner
-eggs = zodbcode
+eggs = zodbcode [test]

Modified: zodbcode/trunk/setup.py
===================================================================
--- zodbcode/trunk/setup.py	2010-09-16 15:15:15 UTC (rev 116459)
+++ zodbcode/trunk/setup.py	2010-09-16 15:16:56 UTC (rev 116460)
@@ -54,7 +54,10 @@
     include_package_data = True,
     package_dir = {'':'src'},
     install_requires = [
-        'ZODB3',
+        'ZODB3 < 3.10dev',
         'zope.interface'],
+    extras_require=dict(test=[
+        'zope.testing',
+        ]),
     zip_safe = False,
     )



More information about the checkins mailing list