tests/hghave.py
branchstable
changeset 49779 3bbf1ad850f0
parent 49778 cafe34655335
child 49791 38ae503b369b
--- a/tests/hghave.py	Sun Dec 11 16:44:50 2022 +0400
+++ b/tests/hghave.py	Sun Dec 11 16:46:29 2022 +0400
@@ -877,7 +877,7 @@
 
 # Add "py27", "py35", ... as possible feature checks. Note that there's no
 # punctuation here.
-@checkvers("py", "Python >= %s", (2.7, 3.5, 3.6, 3.7, 3.8, 3.9))
+@checkvers("py", "Python >= %s", (2.7, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10, 3.11))
 def has_python_range(v):
     major, minor = v.split('.')[0:2]
     py_major, py_minor = sys.version_info.major, sys.version_info.minor