note motivation for our choice of these python versions

This commit is contained in:
Jean-Paul Calderone 2023-08-09 17:04:26 -04:00
parent a73b6d99c4
commit a95a6b88a9

View File

@ -121,6 +121,13 @@ workflows:
name: "Windows Server 2022, CPython <<matrix.pythonVersion>>" name: "Windows Server 2022, CPython <<matrix.pythonVersion>>"
matrix: matrix:
parameters: parameters:
# Run the job for a number of CPython versions. These are the
# two versions installed on the version of the Windows VM image
# we specify (in the executor). This is handy since it means we
# don't have to do any Python installation work. We pin the
# Windows VM image so these shouldn't shuffle around beneath us
# but if we want to update that image or get different versions
# of Python, we probably have to do something here.
pythonVersion: pythonVersion:
- "3.9" - "3.9"
- "3.11" - "3.11"