[Zope-Checkins] SVN: Zope/trunk/ `tempstorage` should only be a test requirement as it depends on `ZODB3 [test]` itself
Andreas Zeidler
cvs-admin at zope.org
Sat Oct 13 19:37:45 UTC 2012
Log message for revision 127985:
`tempstorage` should only be a test requirement as it depends on `ZODB3 [test]` itself
Changed:
U Zope/trunk/buildout.cfg
U Zope/trunk/setup.py
-=-
Modified: Zope/trunk/buildout.cfg
===================================================================
--- Zope/trunk/buildout.cfg 2012-10-13 17:04:35 UTC (rev 127984)
+++ Zope/trunk/buildout.cfg 2012-10-13 19:37:42 UTC (rev 127985)
@@ -31,7 +31,7 @@
import sys
import warnings
if sys.version_info >= (2, 7): warnings.simplefilter('default')
-eggs = Zope2
+eggs = Zope2 [test]
[scripts]
Modified: Zope/trunk/setup.py
===================================================================
--- Zope/trunk/setup.py 2012-10-13 17:04:35 UTC (rev 127984)
+++ Zope/trunk/setup.py 2012-10-13 19:37:42 UTC (rev 127985)
@@ -65,7 +65,6 @@
'initgroups',
'pytz',
'setuptools',
- 'tempstorage',
'transaction',
'zdaemon',
'zExceptions',
@@ -106,7 +105,9 @@
'zope.traversing',
'zope.viewlet',
] + additional_install_requires,
-
+ extras_require={
+ 'test': ['tempstorage'],
+ },
include_package_data=True,
zip_safe=False,
entry_points={
More information about the Zope-Checkins
mailing list