Skip to content

Commit

Permalink
Use windows-2019 for GitHub Actions jobs
Browse files Browse the repository at this point in the history
The windows-latest GitHub Actions virtual environment just switched
from windows-2019 to windows-2022. The windows-2022 virtual
environment cannot build Python C extensions (see
actions/runner-images#5141). As a temporary workaround,
switch to using windows-2019.

Fixes scientific-python#177.
  • Loading branch information
lpsinger committed Feb 25, 2022
1 parent feea983 commit 921f211
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- os: ubuntu-latest
python-version: 3.7
toxenv: py37-test-pytest46
- os: windows-latest
- os: windows-2019
python-version: 3.7
toxenv: py37-test-pytest50
- os: macos-latest
Expand All @@ -29,7 +29,7 @@ jobs:
- os: ubuntu-latest
python-version: 3.7
toxenv: py37-test-pytest52
- os: windows-latest
- os: windows-2019
python-version: 3.8
toxenv: py38-test-pytest53
- os: ubuntu-latest
Expand Down

0 comments on commit 921f211

Please sign in to comment.