Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,21 +84,21 @@ jobs:
with:
python-version: 3.x
- name: Build wheels
uses: PyO3/maturin-action@86b9d133d34bc1b40018696f782949dac11bd380 # v1.49.4
uses: PyO3/maturin-action@b1bd829e37fef14c63f19162034228a2f3dc1021 # v1.50.0
with:
target: ${{ matrix.platform.target }}
args: --release --out dist
sccache: false
manylinux: auto
- name: Build free-threaded wheels
uses: PyO3/maturin-action@86b9d133d34bc1b40018696f782949dac11bd380 # v1.49.4
uses: PyO3/maturin-action@b1bd829e37fef14c63f19162034228a2f3dc1021 # v1.50.0
with:
target: ${{ matrix.platform.target }}
args: --release --out dist -i python3.14t
sccache: false
manylinux: auto
- name: Build free-threaded wheels
uses: PyO3/maturin-action@86b9d133d34bc1b40018696f782949dac11bd380 # v1.49.4
uses: PyO3/maturin-action@b1bd829e37fef14c63f19162034228a2f3dc1021 # v1.50.0
with:
target: ${{ matrix.platform.target }}
args: --release --out dist -i python3.13t
Expand Down Expand Up @@ -132,22 +132,22 @@ jobs:
with:
python-version: 3.x
- name: Build wheels
uses: PyO3/maturin-action@86b9d133d34bc1b40018696f782949dac11bd380 # v1.49.4
uses: PyO3/maturin-action@b1bd829e37fef14c63f19162034228a2f3dc1021 # v1.50.0
with:
target: ${{ matrix.platform.target }}
args: --release --out dist
sccache: false
manylinux: musllinux_1_2
- name: Build free-threaded wheels
uses: PyO3/maturin-action@86b9d133d34bc1b40018696f782949dac11bd380 # v1.49.4
uses: PyO3/maturin-action@b1bd829e37fef14c63f19162034228a2f3dc1021 # v1.50.0
with:
target: ${{ matrix.platform.target }}
args: --release --out dist -i python3.13t

sccache: false
manylinux: musllinux_1_2
- name: Build free-threaded wheels
uses: PyO3/maturin-action@86b9d133d34bc1b40018696f782949dac11bd380 # v1.49.4
uses: PyO3/maturin-action@b1bd829e37fef14c63f19162034228a2f3dc1021 # v1.50.0
with:
target: ${{ matrix.platform.target }}
args: --release --out dist -i python3.14t
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
python-version: 3.x
architecture: ${{ matrix.platform.target }}
- name: Build wheels
uses: PyO3/maturin-action@86b9d133d34bc1b40018696f782949dac11bd380 # v1.49.4
uses: PyO3/maturin-action@b1bd829e37fef14c63f19162034228a2f3dc1021 # v1.50.0
with:
target: ${{ matrix.platform.target }}
args: --release --out dist
Expand All @@ -189,13 +189,13 @@ jobs:
python-version: 3.13t
architecture: ${{ matrix.platform.target }}
- name: Build free-threaded wheels
uses: PyO3/maturin-action@86b9d133d34bc1b40018696f782949dac11bd380 # v1.49.4
uses: PyO3/maturin-action@b1bd829e37fef14c63f19162034228a2f3dc1021 # v1.50.0
with:
target: ${{ matrix.platform.target }}
args: --release --out dist -i python3.13t
sccache: false
- name: Build free-threaded wheels
uses: PyO3/maturin-action@86b9d133d34bc1b40018696f782949dac11bd380 # v1.49.4
uses: PyO3/maturin-action@b1bd829e37fef14c63f19162034228a2f3dc1021 # v1.50.0
with:
target: ${{ matrix.platform.target }}
args: --release --out dist -i python3.14t
Expand Down Expand Up @@ -224,20 +224,20 @@ jobs:
with:
python-version: 3.x
- name: Build wheels
uses: PyO3/maturin-action@86b9d133d34bc1b40018696f782949dac11bd380 # v1.49.4
uses: PyO3/maturin-action@b1bd829e37fef14c63f19162034228a2f3dc1021 # v1.50.0
with:
target: ${{ matrix.platform.target }}
args: --release --out dist
sccache: false
- name: Build free-threaded wheels
uses: PyO3/maturin-action@86b9d133d34bc1b40018696f782949dac11bd380 # v1.49.4
uses: PyO3/maturin-action@b1bd829e37fef14c63f19162034228a2f3dc1021 # v1.50.0
with:
target: ${{ matrix.platform.target }}
args: --release --out dist -i python3.13t

sccache: false
- name: Build free-threaded wheels
uses: PyO3/maturin-action@86b9d133d34bc1b40018696f782949dac11bd380 # v1.49.4
uses: PyO3/maturin-action@b1bd829e37fef14c63f19162034228a2f3dc1021 # v1.50.0
with:
target: ${{ matrix.platform.target }}
args: --release --out dist -i python3.14t
Expand All @@ -257,7 +257,7 @@ jobs:
with:
persist-credentials: false
- name: Build sdist
uses: PyO3/maturin-action@86b9d133d34bc1b40018696f782949dac11bd380 # v1.49.4
uses: PyO3/maturin-action@b1bd829e37fef14c63f19162034228a2f3dc1021 # v1.50.0
with:
command: sdist
args: --out dist
Expand Down Expand Up @@ -303,7 +303,7 @@ jobs:
subject-path: wheels-*/*
- name: Publish to PyPI
if: ${{ startsWith(github.ref, 'refs/tags/') }}
uses: PyO3/maturin-action@86b9d133d34bc1b40018696f782949dac11bd380 # v1.49.4
uses: PyO3/maturin-action@b1bd829e37fef14c63f19162034228a2f3dc1021 # v1.50.0
with:
command: upload
args: --non-interactive --skip-existing wheels-*/*
Expand Down