# HG changeset patch # User kylev # Date 1235764015 0 # Node ID 89b07ce2a788f98ce4840bc49eb31b43cd451606 # Parent e606fd52e86605c5bd812437c4d9c33c1d2ab802 python 2.4 is our minimum version now diff -r e606fd52e866 -r 89b07ce2a788 setup.py --- 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