diff --git a/tests/hghave.py b/tests/hghave.py index 7d313b259169184631b049c20f0afbf50f02dd10_dGVzdHMvaGdoYXZlLnB5..54a75576287aa6a7cf41d98704c41b2b093bb29b_dGVzdHMvaGdoYXZlLnB5 100644 --- a/tests/hghave.py +++ b/tests/hghave.py @@ -868,7 +868,11 @@ # Add "py36", "py37", ... as possible feature checks. Note that there's no # punctuation here. -@checkvers("py", "Python >= %s", ('3.6', '3.7', '3.8', '3.9', '3.10', '3.11')) +@checkvers( + "py", + "Python >= %s", + ('3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13'), +) def has_python_range(v): major, minor = v.split('.')[0:2] py_major, py_minor = sys.version_info.major, sys.version_info.minor