Commit 1b1f21dc authored by Jim Fulton's avatar Jim Fulton

Bug fixed:

- zope.testing was an unnecessary non-testing dependency.
parent 393c35ec
...@@ -4,7 +4,7 @@ parts = test scripts ...@@ -4,7 +4,7 @@ parts = test scripts
[test] [test]
recipe = zc.recipe.testrunner recipe = zc.recipe.testrunner
eggs = ZODB3 eggs = ZODB3 [test]
initialization = initialization =
import os, tempfile import os, tempfile
try: os.mkdir('tmp') try: os.mkdir('tmp')
......
...@@ -200,9 +200,8 @@ setup(name="ZODB3", ...@@ -200,9 +200,8 @@ setup(name="ZODB3",
read_file("README.txt") + "\n\n" + read_file("README.txt") + "\n\n" +
read_file("src", "CHANGES.txt")), read_file("src", "CHANGES.txt")),
test_suite="__main__.alltests", # to support "setup.py test" test_suite="__main__.alltests", # to support "setup.py test"
tests_require = [ tests_require = ['zope.testing'],
'zope.testing', extras_require = dict(test=['zope.testing']),
],
install_requires = [ install_requires = [
'transaction', 'transaction',
'zc.lockfile', 'zc.lockfile',
...@@ -211,7 +210,6 @@ setup(name="ZODB3", ...@@ -211,7 +210,6 @@ setup(name="ZODB3",
'zope.event', 'zope.event',
'zope.interface', 'zope.interface',
'zope.proxy', 'zope.proxy',
'zope.testing',
], ],
zip_safe = False, zip_safe = False,
entry_points = """ entry_points = """
......
...@@ -9,8 +9,9 @@ Bugs Fixed ...@@ -9,8 +9,9 @@ Bugs Fixed
---------- ----------
- History support was broken when using stprages that work with ZODB - 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) 3.9.3 (2009-10-23)
================== ==================
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment