[Zodb-checkins] SVN: ZODB/trunk/setup.py Bumped required Python to
2.3.4+.
Tim Peters
tim.one at comcast.net
Tue Jun 8 15:52:07 EDT 2004
Log message for revision 25306:
Bumped required Python to 2.3.4+.
-=-
Modified: ZODB/trunk/setup.py
===================================================================
--- ZODB/trunk/setup.py 2004-06-08 19:37:11 UTC (rev 25305)
+++ ZODB/trunk/setup.py 2004-06-08 19:52:05 UTC (rev 25306)
@@ -43,8 +43,8 @@
from distutils.command.build_py import build_py
from distutils.util import convert_path
-if sys.version_info < (2, 3):
- print "ZODB 3.3 requires Python 2.3 or higher"
+if sys.version_info < (2, 3, 4):
+ print "ZODB 3.3 requires Python 2.3.4 or higher"
sys.exit(0)
# Include directories for C extensions
More information about the Zodb-checkins
mailing list