[Checkins] SVN: ZODB/trunk/setup.py Fixed Python dependency check.

Jim Fulton jim at zope.com
Mon Apr 11 17:14:31 EDT 2011


Log message for revision 121392:
  Fixed Python dependency check.
  

Changed:
  U   ZODB/trunk/setup.py

-=-
Modified: ZODB/trunk/setup.py
===================================================================
--- ZODB/trunk/setup.py	2011-04-11 21:12:27 UTC (rev 121391)
+++ ZODB/trunk/setup.py	2011-04-11 21:14:31 UTC (rev 121392)
@@ -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 checkins mailing list