Skip to content

Commit

Permalink
Always build binaries for Python 3.8 - 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
egbertbouman committed Mar 1, 2024
1 parent ffc6c4a commit 2b7b2a6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter
args: --release --out dist -i 3.8 -i 3.9 -i 3.10 -i 3.11 -i 3.12
sccache: 'true'
manylinux: auto
- name: Upload wheels
Expand All @@ -50,7 +50,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter
args: --release --out dist -i 3.8 -i 3.9 -i 3.10 -i 3.11 -i 3.12
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v3
Expand All @@ -73,7 +73,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter
args: --release --out dist -i 3.8 -i 3.9 -i 3.10 -i 3.11 -i 3.12
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 2b7b2a6

Please sign in to comment.