[Zodb-checkins] SVN: ZODB/branches/3.7/setup.py As per Tim's commit
at
http://svn.zope.org/ZODB/trunk/README.txt?rev=39824&r1=38707&r2=39824
, we now require Python 2.4.2.
Chris McDonough
chrism at plope.com
Sun Aug 13 17:32:09 EDT 2006
Log message for revision 69458:
As per Tim's commit at http://svn.zope.org/ZODB/trunk/README.txt?rev=39824&r1=38707&r2=39824 , we now require Python 2.4.2.
Changed:
U ZODB/branches/3.7/setup.py
-=-
Modified: ZODB/branches/3.7/setup.py
===================================================================
--- ZODB/branches/3.7/setup.py 2006-08-13 20:27:58 UTC (rev 69457)
+++ ZODB/branches/3.7/setup.py 2006-08-13 21:32:09 UTC (rev 69458)
@@ -48,8 +48,8 @@
from distutils.command.build_py import build_py
from distutils.util import convert_path
-if sys.version_info < (2, 3, 4):
- print "ZODB 3.3 requires Python 2.3.4 or higher"
+if sys.version_info < (2, 4, 2):
+ print "ZODB 3.3 requires Python 2.4.2 or higher"
sys.exit(0)
# Include directories for C extensions
More information about the Zodb-checkins
mailing list