[Checkins] SVN: z3c.recipe.fakezope2eggs/trunk/ Added undeclared but necessary test dependency on `zope.testing` in a test extra.

Michael Howitz mh at gocept.com
Thu Sep 2 02:13:28 EDT 2010


Log message for revision 116120:
  Added undeclared but necessary test dependency on `zope.testing` in a test extra.
  

Changed:
  _U  z3c.recipe.fakezope2eggs/trunk/
  U   z3c.recipe.fakezope2eggs/trunk/CHANGES.txt
  U   z3c.recipe.fakezope2eggs/trunk/buildout.cfg
  U   z3c.recipe.fakezope2eggs/trunk/setup.py

-=-

Property changes on: z3c.recipe.fakezope2eggs/trunk
___________________________________________________________________
Added: svn:ignore
   + .installed.cfg
bin
develop-eggs
parts


Modified: z3c.recipe.fakezope2eggs/trunk/CHANGES.txt
===================================================================
--- z3c.recipe.fakezope2eggs/trunk/CHANGES.txt	2010-09-02 02:06:00 UTC (rev 116119)
+++ z3c.recipe.fakezope2eggs/trunk/CHANGES.txt	2010-09-02 06:13:27 UTC (rev 116120)
@@ -2,6 +2,13 @@
 CHANGES
 =======
 
+Version 0.5.1 (unreleased)
+--------------------------
+
+ - Added undeclared but necessary test dependency on `zope.testing` in a
+   test extra.
+
+
 Version 0.5 (2008-07-21)
 --------------------------
 

Modified: z3c.recipe.fakezope2eggs/trunk/buildout.cfg
===================================================================
--- z3c.recipe.fakezope2eggs/trunk/buildout.cfg	2010-09-02 02:06:00 UTC (rev 116119)
+++ z3c.recipe.fakezope2eggs/trunk/buildout.cfg	2010-09-02 06:13:27 UTC (rev 116120)
@@ -11,7 +11,7 @@
 [test]
 recipe = zc.recipe.testrunner
 eggs =
-    z3c.recipe.fakezope2eggs
+    z3c.recipe.fakezope2eggs [test]
     plone.recipe.zope2install
 defaults = ['-s', 'z3c.recipe.fakezope2eggs']
 

Modified: z3c.recipe.fakezope2eggs/trunk/setup.py
===================================================================
--- z3c.recipe.fakezope2eggs/trunk/setup.py	2010-09-02 02:06:00 UTC (rev 116119)
+++ z3c.recipe.fakezope2eggs/trunk/setup.py	2010-09-02 06:13:27 UTC (rev 116120)
@@ -39,5 +39,14 @@
     package_dir = {'': 'src'},
     zip_safe = False,
     namespace_packages = ['z3c', 'z3c.recipe'],
-    install_requires = ['zc.buildout', 'setuptools'],
-    entry_points = {'zc.buildout': ['default = %s:Recipe' % name]})
+    install_requires = [
+        'setuptools',
+        'zc.buildout',
+        ],
+    extras_require = dict(
+        test = [
+            'zope.testing',
+            ]
+        ),
+    entry_points = {'zc.buildout': ['default = %s:Recipe' % name]},
+    )



More information about the checkins mailing list