[Checkins] SVN: zope.publisher/tags/3.12.4/ tests were not running because zope.testing was not available. Not sure why tests_require is not working, but I am not going down that rabbit hole right now.

Gary Poster gary.poster at canonical.com
Thu Jul 15 11:19:55 EDT 2010


Log message for revision 114784:
  tests were not running because zope.testing was not available.  Not sure why tests_require is not working, but I am not going down that rabbit hole right now.

Changed:
  A   zope.publisher/tags/3.12.4/
  U   zope.publisher/tags/3.12.4/buildout.cfg
  U   zope.publisher/tags/3.12.4/setup.py

-=-
Modified: zope.publisher/tags/3.12.4/buildout.cfg
===================================================================
--- zope.publisher/trunk/buildout.cfg	2010-07-15 15:00:02 UTC (rev 114782)
+++ zope.publisher/tags/3.12.4/buildout.cfg	2010-07-15 15:19:54 UTC (rev 114784)
@@ -4,4 +4,4 @@
 
 [test]
 recipe = zc.recipe.testrunner
-eggs = zope.publisher
+eggs = zope.publisher[tests]

Modified: zope.publisher/tags/3.12.4/setup.py
===================================================================
--- zope.publisher/trunk/setup.py	2010-07-15 15:00:02 UTC (rev 114782)
+++ zope.publisher/tags/3.12.4/setup.py	2010-07-15 15:19:54 UTC (rev 114784)
@@ -28,7 +28,7 @@
 """
 
 setup(name='zope.publisher',
-      version = '3.12.4dev',
+      version = '3.12.4',
       url='http://pypi.python.org/pypi/zope.publisher',
       license='ZPL 2.1',
       author='Zope Foundation and Contributors',
@@ -42,9 +42,7 @@
 
       packages=find_packages('src'),
       package_dir={'': 'src'},
-
       namespace_packages=['zope',],
-      tests_require=['zope.testing'],
       install_requires=['setuptools',
                         'zope.browser',
                         'zope.component',
@@ -58,6 +56,7 @@
                         'zope.proxy',
                         'zope.security',
                        ],
+      extras_require={'tests': ['zope.testing']},
       include_package_data=True,
 
       zip_safe=False,



More information about the checkins mailing list