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

Michael Howitz mh at gocept.com
Sat Sep 25 08:39:03 EDT 2010


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

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

-=-
Modified: zope.error/trunk/CHANGES.txt
===================================================================
--- zope.error/trunk/CHANGES.txt	2010-09-25 12:36:49 UTC (rev 116877)
+++ zope.error/trunk/CHANGES.txt	2010-09-25 12:39:02 UTC (rev 116878)
@@ -5,28 +5,28 @@
 3.7.1 (unreleased)
 ------------------
 
-- Nothing changed yet.
+- Added test extra to declare test dependency on ``zope.testing``.
 
 
 3.7.0 (2009-09-29)
 ------------------
 
-- Clean up dependencies. Drop all testing dependencies as we only need
+- Cleaned up dependencies. Droped all testing dependencies as we only need
   zope.testing now.
 
-- Fix ImportError when zope.testing is not available for some reason.
+- Fixed ImportError when zope.testing is not available for some reason.
 
-- Remove zcml slug and old zpkg-related files.
+- Removed zcml slug and old zpkg-related files.
 
-- Remove word "version" from changelog entries.
+- Removed word "version" from changelog entries.
 
-- Change package's mailing list address to zope-dev at zope.org as
-  zope3-dev at zope.org is now retired. Also change `cheeseshop` to
+- Changed package's mailing list address to zope-dev at zope.org as
+  zope3-dev at zope.org is now retired. Also changed `cheeseshop` to
   `pypi` in the package's homepage url.
 
-- Add dependency on ZODB3 as we use Persistent.
+- Added dependency on ZODB3 as we use Persistent.
 
-- Use a mock request for testing. Dropped the dependency on zope.publisher
+- Used a mock request for testing. Dropped the dependency on zope.publisher
   which was really only a testing dependency.
 
 - Reduced the dependency on zope.container to one on zope.location by no
@@ -45,7 +45,7 @@
 
 - rebumped to replace faulty egg
 
-3.5.0 
+3.5.0
 -----
 
 - Initial documented release

Modified: zope.error/trunk/buildout.cfg
===================================================================
--- zope.error/trunk/buildout.cfg	2010-09-25 12:36:49 UTC (rev 116877)
+++ zope.error/trunk/buildout.cfg	2010-09-25 12:39:02 UTC (rev 116878)
@@ -1,7 +1,7 @@
 [buildout]
-develop = . 
+develop = .
 parts = test
 
 [test]
 recipe = zc.recipe.testrunner
-eggs = zope.error
+eggs = zope.error [test]

Modified: zope.error/trunk/setup.py
===================================================================
--- zope.error/trunk/setup.py	2010-09-25 12:36:49 UTC (rev 116877)
+++ zope.error/trunk/setup.py	2010-09-25 12:39:02 UTC (rev 116878)
@@ -58,7 +58,10 @@
                       'zope.location',
                       'ZODB3', # error.py imports from persistent
                       ],
+    extras_require=dict(
+          test=[
+              'zope.testing',
+              ]),
     include_package_data = True,
-
     zip_safe = False,
     )



More information about the checkins mailing list