Skip to content

Commit

Permalink
Revert "Python 2.4 is no longer supported"
Browse files Browse the repository at this point in the history
This reverts commit 52a5079.
  • Loading branch information
mnaberez committed Feb 16, 2013
1 parent 8ab626f commit ebde674
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 0 additions & 3 deletions CHANGES.txt
Expand Up @@ -3,9 +3,6 @@ Next Release


- Superlance will now refuse to install on an unsupported version of Python. - Superlance will now refuse to install on an unsupported version of Python.


- Python 2.4 is no longer supported. The last version that supported Python
2.4 is Superlance 0.7.

0.7 (2012-08-22) 0.7 (2012-08-22)
---------------- ----------------


Expand Down
4 changes: 2 additions & 2 deletions setup.py
@@ -1,8 +1,8 @@
import os import os
import sys import sys


if sys.version_info[:2] < (2, 5) or sys.version_info[0] > 2: if sys.version_info[:2] < (2, 4) or sys.version_info[0] > 2:
msg = ("Superlance requires Python 2.5 or later but does not work on " msg = ("Superlance requires Python 2.4 or later but does not work on "
"any version of Python 3. You are using version %s. Please " "any version of Python 3. You are using version %s. Please "
"install using a supported version." % sys.version) "install using a supported version." % sys.version)
sys.stderr.write(msg) sys.stderr.write(msg)
Expand Down

0 comments on commit ebde674

Please sign in to comment.