From 407091aa7f9879d187f48f67146002aae543506e Mon Sep 17 00:00:00 2001 From: Trim21 Date: Tue, 24 Dec 2024 04:33:18 +0800 Subject: [PATCH] fix --- .github/workflows/release_python.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release_python.yml b/.github/workflows/release_python.yml index 74f8ddd80a67..ebd61fa6fa0e 100644 --- a/.github/workflows/release_python.yml +++ b/.github/workflows/release_python.yml @@ -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 @@ -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