##// END OF EJS Templates
setup.py: drop compatibility with Python 2.4 and 2.5 (BC)...
Pierre-Yves David -
r25009:e1fb276d default
parent child Browse files
Show More
@@ -5,8 +5,8 b''
5 5 # 'python setup.py --help' for more options
6 6
7 7 import sys, platform
8 if getattr(sys, 'version_info', (0, 0, 0)) < (2, 4, 0, 'final'):
9 raise SystemExit("Mercurial requires Python 2.4 or later.")
8 if getattr(sys, 'version_info', (0, 0, 0)) < (2, 6, 0, 'final'):
9 raise SystemExit("Mercurial requires Python 2.6 or later.")
10 10
11 11 if sys.version_info[0] >= 3:
12 12 def b(s):
General Comments 0
You need to be logged in to leave comments. Login now