changeset 56:89b07ce2a788 MySQLdb

python 2.4 is our minimum version now
author kylev
date Fri, 27 Feb 2009 19:46:55 +0000
parents e606fd52e866
children 9ea2b0e9302e
files setup.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/setup.py	Fri Feb 27 19:14:09 2009 +0000
+++ b/setup.py	Fri Feb 27 19:46:55 2009 +0000
@@ -4,8 +4,8 @@
 import sys
 from setuptools import setup, Extension
 
-if not hasattr(sys, "hexversion") or sys.hexversion < 0x02030000:
-    raise Error("Python 2.3 or newer is required")
+if not hasattr(sys, "hexversion") or sys.hexversion < 0x02040000:
+    raise Error("Python 2.4 or newer is required")
 
 if os.name == "posix":
     from setup_posix import get_config