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
23 changes: 13 additions & 10 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
version: "0.9.x"

- name: Install Python versions
run: uv python install 3.9 3.10 3.11 3.13t 3.14t pypy3.11
run: uv python install 3.9 3.10 3.11 3.14t pypy3.11

- name: Build abi3-py311 wheels
uses: PyO3/maturin-action@v1
Expand All @@ -78,7 +78,7 @@ jobs:
target: ${{ matrix.platform.target }}
# As of Nov 2024, it was necessary to manually specify -i 3.13 to get
# maturin to find the executable. --find-interpreter did not find it.
args: --release --out dist -i 3.9 -i 3.10 -i 3.13t -i 3.14t -i pypy3.11 --manifest-path ${{ matrix.module }}/Cargo.toml
args: --release --out dist -i 3.9 -i 3.10 -i 3.14t -i pypy3.11 --manifest-path ${{ matrix.module }}/Cargo.toml
sccache: "true"
manylinux: ${{ matrix.platform.manylinux }}

Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
version: "0.9.x"

- name: Install Python versions
run: uv python install 3.9 3.10 3.11 3.13t 3.14t pypy3.11
run: uv python install 3.9 3.10 3.11 3.14t pypy3.11

- name: Build abi3-py311 wheels
uses: PyO3/maturin-action@v1
Expand All @@ -132,7 +132,7 @@ jobs:
target: ${{ matrix.platform.target }}
# As of Nov 2024, it was necessary to manually specify -i 3.13 to get
# maturin to find the executable. --find-interpreter did not find it.
args: --release --out dist -i 3.9 -i 3.10 -i 3.13t -i 3.14t -i pypy3.11 --manifest-path ${{ matrix.module }}/Cargo.toml
args: --release --out dist -i 3.9 -i 3.10 -i 3.14t -i pypy3.11 --manifest-path ${{ matrix.module }}/Cargo.toml
sccache: "true"
manylinux: musllinux_1_2

Expand All @@ -150,6 +150,11 @@ jobs:
platform:
- runner: windows-latest
target: x64
# setup-python has no Windows arm64 builds before 3.11.
extra-interpreters: ["3.9", "3.10"]
- runner: windows-11-arm
target: aarch64
extra-interpreters: []
module:
- arro3-core
- arro3-compute
Expand All @@ -160,10 +165,8 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: |
3.9
3.10
${{ join(matrix.platform.extra-interpreters, fromJSON('"\n"')) }}
3.11
3.13t
3.14t

- name: Build abi3-py311 wheels
Expand All @@ -179,7 +182,7 @@ jobs:
target: ${{ matrix.platform.target }}
# As of Nov 2024, it was necessary to manually specify -i 3.13 to get
# maturin to find the executable. --find-interpreter did not find it.
args: --release --out dist -i 3.9 -i 3.10 -i 3.13t -i 3.14t --manifest-path ${{ matrix.module }}/Cargo.toml
args: --release --out dist -i ${{ join(matrix.platform.extra-interpreters, ' ') }} 3.14t --manifest-path ${{ matrix.module }}/Cargo.toml
sccache: "true"

- name: Upload wheels
Expand Down Expand Up @@ -212,7 +215,7 @@ jobs:
version: "0.9.x"

- name: Install Python versions
run: uv python install 3.9 3.10 3.11 3.13t 3.14t pypy3.11
run: uv python install 3.9 3.10 3.11 3.14t pypy3.11

- name: Build abi3-py311 wheels
uses: PyO3/maturin-action@v1
Expand All @@ -227,7 +230,7 @@ jobs:
target: ${{ matrix.platform.target }}
# As of Nov 2024, it was necessary to manually specify -i 3.13 to get
# maturin to find the executable. --find-interpreter did not find it.
args: --release --out dist -i 3.9 -i 3.10 -i 3.13t -i 3.14t -i pypy3.11 --manifest-path ${{ matrix.module }}/Cargo.toml
args: --release --out dist -i 3.9 -i 3.10 -i 3.14t -i pypy3.11 --manifest-path ${{ matrix.module }}/Cargo.toml
sccache: "true"

- name: Upload wheels
Expand Down
Loading