##// END OF EJS Templates
hghave: add py312 and py313...
Manuel Jacob -
r52267:54a75576 default
parent child Browse files
Show More
@@ -868,7 +868,11 b' def has_demandimport():'
868
868
869 # Add "py36", "py37", ... as possible feature checks. Note that there's no
869 # Add "py36", "py37", ... as possible feature checks. Note that there's no
870 # punctuation here.
870 # punctuation here.
871 @checkvers("py", "Python >= %s", ('3.6', '3.7', '3.8', '3.9', '3.10', '3.11'))
871 @checkvers(
872 "py",
873 "Python >= %s",
874 ('3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13'),
875 )
872 def has_python_range(v):
876 def has_python_range(v):
873 major, minor = v.split('.')[0:2]
877 major, minor = v.split('.')[0:2]
874 py_major, py_minor = sys.version_info.major, sys.version_info.minor
878 py_major, py_minor = sys.version_info.major, sys.version_info.minor
General Comments 0
You need to be logged in to leave comments. Login now