[Zodb-checkins] SVN: ZODB/branches/3.10/setup.py Fixed Python requirement.
Jim Fulton
jim at zope.com
Sat Feb 12 06:44:26 EST 2011
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:
More information about the Zodb-checkins
mailing list