Commit 2bec5579 authored by Tres Seaver's avatar Tres Seaver

Pin manuel to a Python 2.5-compatible version when installing under Python 2.5.

parent 2d10fc4c
...@@ -36,8 +36,10 @@ if sys.version_info < (2, 5): ...@@ -36,8 +36,10 @@ if sys.version_info < (2, 5):
if sys.version_info < (2, 6): if sys.version_info < (2, 6):
transaction_version = 'transaction == 1.1.1' transaction_version = 'transaction == 1.1.1'
manuel_version = 'manuel < 1.6dev'
else: else:
transaction_version = 'transaction >= 1.1.0' transaction_version = 'transaction >= 1.1.0'
manuel_version = 'manuel'
# The (non-obvious!) choices for the Trove Development Status line: # The (non-obvious!) choices for the Trove Development Status line:
# Development Status :: 5 - Production/Stable # Development Status :: 5 - Production/Stable
...@@ -195,8 +197,8 @@ setup(name="ZODB3", ...@@ -195,8 +197,8 @@ setup(name="ZODB3",
classifiers = filter(None, classifiers.split("\n")), classifiers = filter(None, classifiers.split("\n")),
long_description = long_description, long_description = long_description,
test_suite="__main__.alltests", # to support "setup.py test" test_suite="__main__.alltests", # to support "setup.py test"
tests_require = ['zope.testing', 'manuel'], tests_require = ['zope.testing', manuel_version],
extras_require = dict(test=['zope.testing', 'manuel']), extras_require = dict(test=['zope.testing', manuel_version]),
install_requires = [ install_requires = [
transaction_version, transaction_version,
'zc.lockfile', 'zc.lockfile',
......
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
Bugs Fixed Bugs Fixed
---------- ----------
- Pinned the ``transaction`` dependency to a Python 2.5-compatible version - Pinned the ``transaction`` and ``manuel`` dependencies to Python 2.5-
when installing under Python 2.5. compatible versions when installing under Python 2.5.
3.10.5 (2011-11-19) 3.10.5 (2011-11-19)
=================== ===================
......
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