summaryrefslogtreecommitdiff
path: root/scripts/build/appveyor.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/build/appveyor.py')
-rwxr-xr-xscripts/build/appveyor.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/build/appveyor.py b/scripts/build/appveyor.py
index 39b3ebe..bd65007 100755
--- a/scripts/build/appveyor.py
+++ b/scripts/build/appveyor.py
@@ -661,7 +661,7 @@ class Options:
def py_ver(self):
"""The Python version to build as 2 digits string."""
rv = os.environ['PY_VER']
- assert rv in ('36', '37', '38', '39'), rv
+ assert rv in ('36', '37', '38', '39', '310'), rv
return rv
@property
@@ -747,6 +747,7 @@ class Options:
'37': '14.0',
'38': '14.0',
'39': '16.0',
+ '310': '16.0',
}
return vsvers[self.py_ver]