From 2b7b2a6d0a483313755d96228c5cb926972f7e5c Mon Sep 17 00:00:00 2001 From: Egbert Bouman Date: Fri, 1 Mar 2024 13:15:56 +0100 Subject: [PATCH] Always build binaries for Python 3.8 - 3.12 --- .github/workflows/publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 9420365..4e71920 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -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 @@ -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 @@ -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