mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-10 19:16:34 +03:00
ci: Test Python 3.11 on Appveyor
This commit is contained in:
parent
1bf8e77ea2
commit
57009707b1
|
@ -6,8 +6,8 @@ environment:
|
|||
matrix:
|
||||
# For Python versions available on Appveyor, see
|
||||
# https://www.appveyor.com/docs/windows-images-software/#python
|
||||
# - {PY_VER: "311", PY_ARCH: "32", APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019}
|
||||
# - {PY_VER: "311", PY_ARCH: "64", APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019}
|
||||
- {PY_VER: "311", PY_ARCH: "32", APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019}
|
||||
- {PY_VER: "311", PY_ARCH: "64", APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019}
|
||||
- {PY_VER: "310", PY_ARCH: "32", APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019}
|
||||
- {PY_VER: "310", PY_ARCH: "64", APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019}
|
||||
- {PY_VER: "39", PY_ARCH: "32", APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019}
|
||||
|
|
|
@ -655,9 +655,12 @@ class Options:
|
|||
|
||||
@property
|
||||
def py_ver(self):
|
||||
"""The Python version to build as 2 digits string."""
|
||||
"""The Python version to build as 2 digits string.
|
||||
|
||||
For large values of 2, occasionally.
|
||||
"""
|
||||
rv = os.environ['PY_VER']
|
||||
assert rv in ('36', '37', '38', '39', '310'), rv
|
||||
assert rv in ('36', '37', '38', '39', '310', '311'), rv
|
||||
return rv
|
||||
|
||||
@property
|
||||
|
@ -744,6 +747,7 @@ class Options:
|
|||
'38': '14.0',
|
||||
'39': '16.0',
|
||||
'310': '16.0',
|
||||
'311': '16.0',
|
||||
}
|
||||
return vsvers[self.py_ver]
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user