Skip to content

Commit 325916c

Browse files
committed
Use '-dev' for every Python version. Ref actions/setup-python#213.
1 parent fea1e7c commit 325916c

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,9 @@ jobs:
77
strategy:
88
matrix:
99
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
10+
- 3.7
11+
- '3.10'
12+
- '3.11'
1513
platform:
1614
- ubuntu-latest
1715
- macos-latest
@@ -22,7 +20,7 @@ jobs:
2220
- name: Setup Python
2321
uses: actions/setup-python@v3
2422
with:
25-
python-version: ${{ matrix.python }}
23+
python-version: ${{ matrix.python }}-dev
2624
- name: Install tox
2725
run: |
2826
python -m pip install tox

0 commit comments

Comments
 (0)