diff options
author | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2021-10-05 00:44:09 +0200 |
---|---|---|
committer | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2021-11-03 12:51:52 +0100 |
commit | e0afdce9a9b6643987a0a359c90ea58b3d1ba497 (patch) | |
tree | 213f594d53b49ec5da956f2ab44eed290e20e444 /scripts/build/appveyor.py | |
parent | b241def64bdc9ac350ecae4b665d9eec11a48229 (diff) | |
download | psycopg2-py310.tar.gz |
Build Python 3.10 packages of relase 2.9.1py310
Diffstat (limited to 'scripts/build/appveyor.py')
-rwxr-xr-x | scripts/build/appveyor.py | 3 |
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] |