Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
trim21 committed Dec 23, 2024
1 parent 4ea0cfa commit 407091a
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/release_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,22 @@ jobs:
if: ${{ runner.os == 'Windows' }}
with:
python-version: "3.13t"
- uses: PyO3/maturin-action@v1
name: build non-abi3 wheels for py3.10 and free-threads
with:
working-directory: "bindings/python"
target: "${{ matrix.target }}"
command: build
args: --release -o dist -i 3.13t --features=pyo3/extension-module,services-all
sccache: true
manylinux: auto
- uses: PyO3/maturin-action@v1
name: build abi3 wheels
with:
working-directory: "bindings/python"
target: "${{ matrix.target }}"
command: build
args: --release -o dist -i python3.11 --features=pyo3/extension-module,services-all,abi3
args: --release -o dist -i 3.11 --features=pyo3/extension-module,services-all,abi3
sccache: true
manylinux: auto
- uses: PyO3/maturin-action@v1
Expand All @@ -89,7 +98,7 @@ jobs:
working-directory: "bindings/python"
target: "${{ matrix.target }}"
command: build
args: --release -o dist -i 3.10 -i python3.13t --features=pyo3/extension-module,services-all
args: --release -o dist -i 3.10 --features=pyo3/extension-module,services-all
sccache: true
manylinux: auto

Expand Down

0 comments on commit 407091a

Please sign in to comment.