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
[test]
recipe = zc.recipe.testrunner
eggs = ZODB3
eggs = ZODB3 [test]
initialization =
import os, tempfile
try: os.mkdir('tmp')
......
......@@ -200,9 +200,8 @@ setup(name="ZODB3",
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 @@ setup(name="ZODB3",
'zope.event',
'zope.interface',
'zope.proxy',
'zope.testing',
],
zip_safe = False,
entry_points = """
......
......@@ -9,8 +9,9 @@ Bugs Fixed
----------
- 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)
==================
......
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