|
@@ -6,8 +6,8 @@ import string
|
|
|
version, extra = string.split(sys.version, ' ', 1)
|
|
|
maj, minor = string.split(version, '.', 1)
|
|
|
|
|
|
-if not maj[0] >= '2' and minor[0] >= '4':
|
|
|
- msg = ("supervisor requires Python 2.4 or better, you are attempting to "
|
|
|
+if not maj[0] >= '2' and minor[0] >= '3':
|
|
|
+ msg = ("supervisor requires Python 2.3 or better, you are attempting to "
|
|
|
"install it using version %s. Please install with a "
|
|
|
"supported version" % version)
|
|
|
|