We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0435817 commit afdca7fCopy full SHA for afdca7f
.github/workflows/main.yml
@@ -30,14 +30,18 @@ jobs:
30
python: pypy-3.7
31
- os: macos-latest
32
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...
35
- os: windows-latest
36
- python: "3.9"
+ python: "3.10"
37
steps:
38
- uses: actions/checkout@v2
39
- name: Set up Python ${{ matrix.python }}
40
uses: actions/setup-python@v2
+ if: "!endsWith(matrix.python, '-dev')"
+ 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')"
45
with:
46
python-version: ${{ matrix.python }}
47
- name: Install
0 commit comments