[Zodb-checkins] SVN: ZODB/branches/3.10/s Pin manuel to a Python 2.5-compatible version when installing under Python 2.5.

Tres Seaver cvs-admin at zope.org
Wed May 2 16:09:30 UTC 2012


Log message for revision 125618:
  Pin manuel to a Python 2.5-compatible version when installing under Python 2.5.

Changed:
  U   ZODB/branches/3.10/setup.py
  U   ZODB/branches/3.10/src/CHANGES.txt

-=-
Modified: ZODB/branches/3.10/setup.py
===================================================================
--- ZODB/branches/3.10/setup.py	2012-05-02 15:59:25 UTC (rev 125617)
+++ ZODB/branches/3.10/setup.py	2012-05-02 16:09:27 UTC (rev 125618)
@@ -36,8 +36,10 @@
 
 if sys.version_info < (2, 6):
     transaction_version = 'transaction == 1.1.1'
+    manuel_version = 'manuel < 1.6dev'
 else:
     transaction_version = 'transaction >= 1.1.0'
+    manuel_version = 'manuel'
 
 # The (non-obvious!) choices for the Trove Development Status line:
 # Development Status :: 5 - Production/Stable
@@ -195,8 +197,8 @@
       classifiers = filter(None, classifiers.split("\n")),
       long_description = long_description,
       test_suite="__main__.alltests", # to support "setup.py test"
-      tests_require = ['zope.testing', 'manuel'],
-      extras_require = dict(test=['zope.testing', 'manuel']),
+      tests_require = ['zope.testing', manuel_version],
+      extras_require = dict(test=['zope.testing', manuel_version]),
       install_requires = [
         transaction_version,
         'zc.lockfile',

Modified: ZODB/branches/3.10/src/CHANGES.txt
===================================================================
--- ZODB/branches/3.10/src/CHANGES.txt	2012-05-02 15:59:25 UTC (rev 125617)
+++ ZODB/branches/3.10/src/CHANGES.txt	2012-05-02 16:09:27 UTC (rev 125618)
@@ -8,8 +8,8 @@
 Bugs Fixed
 ----------
 
-- Pinned the ``transaction`` dependency to a Python 2.5-compatible version
-  when installing under Python 2.5.
+- Pinned the ``transaction`` and ``manuel`` dependencies to Python 2.5-
+  compatible versions when installing under Python 2.5.
 
 3.10.5 (2011-11-19)
 ===================



More information about the Zodb-checkins mailing list