##// END OF EJS Templates
setup: drop statement of support for Python before 3.5.3...
Augie Fackler -
r49678:9af9e2d5 default
parent child Browse files
Show More
@@ -13,15 +13,7 b' import os'
13 # bug link: https://bugs.python.org/issue25270
13 # bug link: https://bugs.python.org/issue25270
14 supportedpy = ','.join(
14 supportedpy = ','.join(
15 [
15 [
16 '>=2.7.4',
16 '>=3.5.3',
17 '!=3.0.*',
18 '!=3.1.*',
19 '!=3.2.*',
20 '!=3.3.*',
21 '!=3.4.*',
22 '!=3.5.0',
23 '!=3.5.1',
24 '!=3.5.2',
25 '!=3.6.0',
17 '!=3.6.0',
26 '!=3.6.1',
18 '!=3.6.1',
27 ]
19 ]
@@ -37,7 +29,6 b' if sys.version_info[0] >= 3:'
37 def sysstr(s):
29 def sysstr(s):
38 return s.decode('latin-1')
30 return s.decode('latin-1')
39
31
40
41 else:
32 else:
42 libdir_escape = 'string_escape'
33 libdir_escape = 'string_escape'
43
34
General Comments 0
You need to be logged in to leave comments. Login now