Skip to content

Commit 11fd620

Browse files
committed
Changed Python 3.9 job to use Windows Server 2016
1 parent 51c577d commit 11fd620

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.appveyor.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,14 @@ environment:
2121
- PYTHON: C:/Python312
2222
ARCHITECTURE: x86
2323
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022
24-
- PYTHON: C:/Python39-x64
24+
- PYTHON: C:/Python39
25+
CHOCO_PYTHON_VERSION: 3.9.13
2526
ARCHITECTURE: AMD64
26-
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
27+
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
2728

2829

2930
install:
31+
- if defined CHOCO_PYTHON_VERSION choco install python --version=%CHOCO_PYTHON_VERSION%
3032
- '%PYTHON%\%EXECUTABLE% --version'
3133
- '%PYTHON%\%EXECUTABLE% -m pip install --upgrade pip'
3234
- curl -fsSL -o pillow-test-images.zip https://github.com/python-pillow/test-images/archive/main.zip

docs/installation/platform-support.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ These platforms are built and tested for every change.
4848
| Ubuntu Linux 24.04 LTS (Noble) | 3.12 | x86-64, ppc64le, |
4949
| | | s390x |
5050
+----------------------------------+----------------------------+---------------------+
51-
| Windows Server 2019 | 3.9 | x86-64 |
51+
| Windows Server 2016 | 3.9 | x86-64 |
5252
+----------------------------------+----------------------------+---------------------+
5353
| Windows Server 2022 | 3.9, 3.10, 3.11, | x86-64 |
5454
| | 3.12, 3.13, PyPy3 | |

winbuild/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ For more extensive info, see the [Windows build instructions](build.rst).
1111
* Requires Microsoft Visual Studio 2017 or newer with C++ component.
1212
* Requires NASM for libjpeg-turbo, a required dependency when using this script.
1313
* Requires CMake 3.15 or newer (available as Visual Studio component).
14-
* Tested on Windows Server 2019 with Visual Studio 2019 Community and Visual Studio 2022 Community (AppVeyor).
14+
* Tested on Windows Server 2016 with Visual Studio 2017 Community, and Windows Server 2019 with Visual Studio 2022 Community (AppVeyor).
1515
* Tested on Windows Server 2022 with Visual Studio 2022 Enterprise (GitHub Actions).
1616

1717
The following is a simplified version of the script used on AppVeyor:

0 commit comments

Comments
 (0)