Commit 9b5f8916 authored by Jim Fulton's avatar Jim Fulton

Fixed Python requirement.

parent 7a147419
...@@ -30,8 +30,8 @@ from setuptools.extension import Extension ...@@ -30,8 +30,8 @@ from setuptools.extension import Extension
import os import os
import sys import sys
if sys.version_info < (2, 4, 2): if sys.version_info < (2, 5):
print "This version of ZODB requires Python 2.4.2 or higher" print "This version of ZODB requires Python 2.5 or higher"
sys.exit(0) sys.exit(0)
# The (non-obvious!) choices for the Trove Development Status line: # The (non-obvious!) choices for the Trove Development Status line:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment