Skip to content

Commit

Permalink
Fix building aarch64 linux wheel (#277)
Browse files Browse the repository at this point in the history
* Test aarch64 linux wheel

* try to fix

* add sudo

* fix aarch64 if?

* Use manylinux 2_24 on aarch64

* Use 2_28

* remove aarch if block

* revert changes

* Update version
  • Loading branch information
kylebarron authored Dec 16, 2024
1 parent a46d767 commit d628379
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 8 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,22 @@ jobs:
platform:
- runner: ubuntu-latest
target: x86_64
manylinux: auto
- runner: ubuntu-latest
target: x86
# Need to fix ring compilation: https://github.com/briansmith/ring/issues/1414#issuecomment-1055177218
# - runner: ubuntu-latest
# target: aarch64
manylinux: auto
- runner: ubuntu-latest
target: aarch64
manylinux: "2_28"
- runner: ubuntu-latest
target: armv7
manylinux: auto
- runner: ubuntu-latest
target: s390x
manylinux: auto
- runner: ubuntu-latest
target: ppc64le
manylinux: auto
module:
- arro3-core
- arro3-compute
Expand All @@ -61,7 +66,7 @@ jobs:
# maturin to find the executable. --find-interpreter did not find it.
args: --release --out dist -i 3.9 -i 3.10 -i 3.11 -i 3.12 -i 3.13 -i pypy3.10 --manifest-path ${{ matrix.module }}/Cargo.toml
sccache: "true"
manylinux: auto
manylinux: ${{ matrix.platform.manylinux }}

- name: Upload wheels
uses: actions/upload-artifact@v4
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

This is the changelog for arro3. pyo3-arrow has a separate changelog.

## [0.4.5] - 2024-12-16

### Bug fixes :bug:

- Build wheels for linux aarch64. https://github.com/kylebarron/arro3/pull/277

## [0.4.4] - 2024-12-09

### Bug fixes :bug:
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ resolver = "2"

[workspace.package]
# Package version for arro3-*, not for pyo3-arrow
version = "0.4.4"
version = "0.4.5"
authors = ["Kyle Barron <kylebarron2@gmail.com>"]
edition = "2021"
homepage = "https://kylebarron.dev/arro3"
Expand Down

0 comments on commit d628379

Please sign in to comment.