We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fea1e7c commit 325916cCopy full SHA for 325916c
.github/workflows/main.yml
@@ -7,11 +7,9 @@ jobs:
7
strategy:
8
matrix:
9
python:
10
- # Build on pre-releases until stable, then stable releases.
11
- # actions/setup-python#213
12
- - ~3.7.0-0
13
- - ~3.10.0-0
14
- - ~3.11.0-0
+ - 3.7
+ - '3.10'
+ - '3.11'
15
platform:
16
- ubuntu-latest
17
- macos-latest
@@ -22,7 +20,7 @@ jobs:
22
20
- name: Setup Python
23
21
uses: actions/setup-python@v3
24
with:
25
- python-version: ${{ matrix.python }}
+ python-version: ${{ matrix.python }}-dev
26
- name: Install tox
27
run: |
28
python -m pip install tox
0 commit comments