SVN: ZODB/branches/3.10/setup.py Fixed Python requirement.
Jim Fulton <[email protected]> Sat, 12 Feb 2011 06:44:26 -0500 (EST)
| Newsgroups | gmane.comp.python.zope.zodb.cvs |
|---|---|
| Message-ID | <[email protected]> |
Log message for revision 120296:
Fixed Python requirement.
Changed:
U ZODB/branches/3.10/setup.py
-=-
Modified: ZODB/branches/3.10/setup.py
===================================================================
--- ZODB/branches/3.10/setup.py 2011-02-12 11:44:01 UTC (rev 120295)
+++ ZODB/branches/3.10/setup.py 2011-02-12 11:44:26 UTC (rev 120296)
@@ -30,8 +30,8 @@
import os
import sys
-if sys.version_info < (2, 4, 2):
- print "This version of ZODB requires Python 2.4.2 or higher"
+if sys.version_info < (2, 5):
+ print "This version of ZODB requires Python 2.5 or higher"
sys.exit(0)
# The (non-obvious!) choices for the Trove Development Status line: