Skip to content

Commit 598066d

Browse files
authored
Stop testing deprecated Windows Server 2019 runner image (#8989)
2 parents 3944db2 + 9327e42 commit 598066d

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

.github/workflows/test-windows.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,15 @@ env:
3131

3232
jobs:
3333
build:
34-
runs-on: ${{ matrix.os }}
34+
runs-on: windows-latest
3535
strategy:
3636
fail-fast: false
3737
matrix:
3838
python-version: ["pypy3.11", "pypy3.10", "3.10", "3.11", "3.12", "3.13", "3.14"]
3939
architecture: ["x64"]
40-
os: ["windows-latest"]
4140
include:
4241
# Test the oldest Python on 32-bit
43-
- { python-version: "3.9", architecture: "x86", os: "windows-2019" }
42+
- { python-version: "3.9", architecture: "x86" }
4443

4544
timeout-minutes: 45
4645

docs/installation/platform-support.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ These platforms are built and tested for every change.
4848
| Ubuntu Linux 24.04 LTS (Noble) | 3.12 | x86-64, arm64v8, |
4949
| | | ppc64le, s390x |
5050
+----------------------------------+----------------------------+---------------------+
51-
| Windows Server 2019 | 3.9 | x86 |
52-
+----------------------------------+----------------------------+---------------------+
53-
| Windows Server 2022 | 3.10, 3.11, 3.12, 3.13, | x86-64 |
51+
| Windows Server 2022 | 3.9 | x86 |
52+
| +----------------------------+---------------------+
53+
| | 3.10, 3.11, 3.12, 3.13, | x86-64 |
5454
| | PyPy3 | |
5555
| +----------------------------+---------------------+
5656
| | 3.12 (MinGW) | x86-64 |

winbuild/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +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 2022 with Visual Studio 2022 Enterprise and Windows Server
15-
2019 with Visual Studio 2019 Enterprise (GitHub Actions).
14+
* Tested on Windows Server 2022 with Visual Studio 2022 Enterprise (GitHub Actions).
1615

1716
Here's an example script to build on Windows:
1817

0 commit comments

Comments
 (0)