Skip to content

Commit

Permalink
Use '-dev' for every Python version. Ref actions/setup-python#213.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Jul 29, 2022
1 parent 36504bb commit d043630
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/main.yml
Expand Up @@ -7,11 +7,9 @@ jobs:
strategy:
matrix:
python:
# Build on pre-releases until stable, then stable releases.
# actions/setup-python#213
- ~3.7.0-0
- ~3.10.0-0
- ~3.11.0-0
- 3.7
- '3.10'
- '3.11'
platform:
- ubuntu-latest
- macos-latest
Expand All @@ -22,7 +20,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python }}
python-version: ${{ matrix.python }}-dev
- name: Install tox
run: |
python -m pip install tox
Expand Down

0 comments on commit d043630

Please sign in to comment.