Skip to content

Commit afdca7f

Browse files
use deadsnakes for nightly 3.11 CI (#211)
Co-authored-by: Guido van Rossum <[email protected]>
1 parent 0435817 commit afdca7f

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,18 @@ jobs:
3030
python: pypy-3.7
3131
- os: macos-latest
3232
python: "3.10"
33-
# XXX: We should be testing 3.10, but for some reason setuptools can't
34-
# seem to find the runner's C compiler for new wheel builds...
3533
- os: windows-latest
36-
python: "3.9"
34+
python: "3.10"
3735
steps:
3836
- uses: actions/checkout@v2
3937
- name: Set up Python ${{ matrix.python }}
4038
uses: actions/setup-python@v2
39+
if: "!endsWith(matrix.python, '-dev')"
40+
with:
41+
python-version: ${{ matrix.python }}
42+
- name: Set up Python ${{ matrix.python }} using deadsnakes
43+
- uses: deadsnakes/[email protected]
44+
if: "endsWith(matrix.python, '-dev')"
4145
with:
4246
python-version: ${{ matrix.python }}
4347
- name: Install

0 commit comments

Comments
 (0)