[Zodb-checkins] SVN: ZODB/branches/3.9/ Bug fixed:
Jim Fulton
jim at zope.com
Tue Dec 1 17:01:30 EST 2009
Log message for revision 106148:
Bug fixed:
- zope.testing was an unnecessary non-testing dependency.
Changed:
U ZODB/branches/3.9/buildout.cfg
U ZODB/branches/3.9/setup.py
U ZODB/branches/3.9/src/CHANGES.txt
-=-
Modified: ZODB/branches/3.9/buildout.cfg
===================================================================
--- ZODB/branches/3.9/buildout.cfg 2009-12-01 21:29:01 UTC (rev 106147)
+++ ZODB/branches/3.9/buildout.cfg 2009-12-01 22:01:30 UTC (rev 106148)
@@ -4,7 +4,7 @@
[test]
recipe = zc.recipe.testrunner
-eggs = ZODB3
+eggs = ZODB3 [test]
initialization =
import os, tempfile
try: os.mkdir('tmp')
Modified: ZODB/branches/3.9/setup.py
===================================================================
--- ZODB/branches/3.9/setup.py 2009-12-01 21:29:01 UTC (rev 106147)
+++ ZODB/branches/3.9/setup.py 2009-12-01 22:01:30 UTC (rev 106148)
@@ -200,9 +200,8 @@
read_file("README.txt") + "\n\n" +
read_file("src", "CHANGES.txt")),
test_suite="__main__.alltests", # to support "setup.py test"
- tests_require = [
- 'zope.testing',
- ],
+ tests_require = ['zope.testing'],
+ extras_require = dict(test=['zope.testing']),
install_requires = [
'transaction',
'zc.lockfile',
@@ -211,7 +210,6 @@
'zope.event',
'zope.interface',
'zope.proxy',
- 'zope.testing',
],
zip_safe = False,
entry_points = """
Modified: ZODB/branches/3.9/src/CHANGES.txt
===================================================================
--- ZODB/branches/3.9/src/CHANGES.txt 2009-12-01 21:29:01 UTC (rev 106147)
+++ ZODB/branches/3.9/src/CHANGES.txt 2009-12-01 22:01:30 UTC (rev 106148)
@@ -9,8 +9,9 @@
----------
- History support was broken when using stprages that work with ZODB
- 3.8 and 3.9
+ 3.8 and 3.9.
+- zope.testing was an unnecessary non-testing dependency.
3.9.3 (2009-10-23)
==================
More information about the Zodb-checkins
mailing list