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
12 changes: 6 additions & 6 deletions .github/workflows/python-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
version: "0.5.x"

- name: Install Python versions
run: uv python install 3.10 3.13 pypy3.10
run: uv python install 3.10 3.13 pypy3.11

- name: Build abi3-py311 wheels
uses: PyO3/maturin-action@v1
Expand All @@ -68,7 +68,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist -i 3.10 -i pypy3.10 --features extension-module --manifest-path python/Cargo.toml
args: --release --out dist -i 3.10 -i pypy3.11 --features extension-module --manifest-path python/Cargo.toml
sccache: "true"
manylinux: ${{ matrix.platform.manylinux }}

Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
version: "0.5.x"

- name: Install Python versions
run: uv python install 3.10 3.13 pypy3.10
run: uv python install 3.10 3.13 pypy3.11

- name: Build abi3-py311 wheels
uses: PyO3/maturin-action@v1
Expand All @@ -117,7 +117,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist -i 3.10 -i pypy3.10 --features extension-module --manifest-path python/Cargo.toml
args: --release --out dist -i 3.10 -i pypy3.11 --features extension-module --manifest-path python/Cargo.toml
sccache: "true"
manylinux: musllinux_1_2

Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
version: "0.5.x"

- name: Install Python versions
run: uv python install 3.10 3.13 pypy3.10
run: uv python install 3.10 3.13 pypy3.11

- name: Build abi3-py311 wheels
uses: PyO3/maturin-action@v1
Expand All @@ -204,7 +204,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist -i 3.10 -i pypy3.10 --features extension-module --manifest-path python/Cargo.toml
args: --release --out dist -i 3.10 -i pypy3.11 --features extension-module --manifest-path python/Cargo.toml
sccache: "true"

- name: Upload wheels
Expand Down
Loading