Skip to content

Commit

Permalink
Build also aarch64 wheels
Browse files Browse the repository at this point in the history
Seems that cibuildwheel now allows building aarch64 wheels, so we should
try to distribute these as well.

Signed-off-by: Pablo Galindo <pablogsal@gmail.com>
  • Loading branch information
pablogsal committed Jul 10, 2023
1 parent c1de46f commit 7f4d56b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,15 @@ jobs:
matrix:
os: [ubuntu-latest]
cibw_python: ["cp37-*", "cp38-*", "cp39-*", "cp310-*", "cp311-*"]
cibw_arch: ["x86_64"]
cibw_arch: ["x86_64", "aarch64"]

steps:
- name: Disable ptrace security restrictions
run: |
echo 0 | sudo tee /proc/sys/kernel/yama/ptrace_scope
- uses: docker/setup-qemu-action@v1
if: runner.os == 'Linux'
name: Set up QEMU
- uses: actions/download-artifact@v3
with:
name: artifact
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ underlines = "-~"
build = ["cp38-*", "cp39-*", "cp310-*", "cp311-*"]
manylinux-x86_64-image = "manylinux2014"
manylinux-i686-image = "manylinux2014"
skip = "*-musllinux_aarch64"

[tool.cibuildwheel.linux]
before-all = [
Expand Down

0 comments on commit 7f4d56b

Please sign in to comment.