-
Notifications
You must be signed in to change notification settings - Fork 510
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
16 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -68,31 +68,33 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- name: Setup Rust toolchain | ||
uses: ./.github/actions/setup | ||
- uses: PyO3/maturin-action@v1 | ||
|
||
# actions/setup-python@v5 doesn't support this yet | ||
- uses: Quansight-Labs/[email protected] | ||
if: ${{ runner.os == 'Windows' }} | ||
with: | ||
working-directory: "bindings/python" | ||
target: "${{ matrix.target }}" | ||
command: build | ||
args: --release -o dist -i python3.11 --features=pyo3/extension-module,services-all,abi3 | ||
sccache: true | ||
manylinux: auto | ||
python-version: "3.13t" | ||
|
||
- uses: PyO3/maturin-action@v1 | ||
name: build abi3-cp311 wheels | ||
with: | ||
working-directory: "bindings/python" | ||
target: "${{ matrix.target }}" | ||
command: build | ||
args: --release -o dist -i python3.10 --features=pyo3/extension-module,services-all | ||
args: --release -o dist -i 3.11 --features=pyo3/extension-module,services-all,abi3 | ||
sccache: true | ||
manylinux: auto | ||
- name: Build free-threaded wheels | ||
uses: PyO3/maturin-action@v1 | ||
|
||
- uses: PyO3/maturin-action@v1 | ||
name: build wheels for cp310 and cp313t | ||
with: | ||
working-directory: "bindings/python" | ||
target: "${{ matrix.target }}" | ||
command: build | ||
args: --release -o dist -i python3.13t --features=pyo3/extension-module,services-all | ||
args: --release -o dist -i 3.10 -i 3.13t --features=pyo3/extension-module,services-all | ||
sccache: true | ||
manylinux: auto | ||
|
||
- name: Upload wheels | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters