diff --git a/scripts/internal/winmake.py b/scripts/internal/winmake.py index 06399878ff..43db68fd9f 100755 --- a/scripts/internal/winmake.py +++ b/scripts/internal/winmake.py @@ -523,23 +523,15 @@ def get_python(path): # try to look for a python installation given a shortcut name path = path.replace('.', '') vers = ( - '26', - '26-32', - '26-64', '27', '27-32', '27-64', - '36', - '36-32', - '36-64', - '37', - '37-32', - '37-64', - '38', - '38-32', - '38-64', - '39-32', - '39-64', + '310-32', + '310-64', + '311-32', + '311-64', + '312-32', + '312-64', ) for v in vers: pypath = r'C:\\python%s\python.exe' % v