Skip to content

Commit

Permalink
Install multiple CPython versions, avoiding PyPy
Browse files Browse the repository at this point in the history
  • Loading branch information
alecandido committed Feb 23, 2024
1 parent 00140d5 commit 3afe940
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,13 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: |
3.7
3.8
3.9
3.10
3.11
3.12
architecture: ${{ matrix.target }}
- name: Build wheels
uses: PyO3/maturin-action@v1
Expand All @@ -214,7 +220,13 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: |
3.7
3.8
3.9
3.10
3.11
3.12
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand Down

0 comments on commit 3afe940

Please sign in to comment.