Skip to content

Commit

Permalink
add aarch64 support for linux
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbyrenwick committed Jun 28, 2024
1 parent c145077 commit 89296d2
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/cibuildwheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ jobs:
CIBW_BEFORE_BUILD: "pip install --only-binary :all: -r requirements.txt"
# There are/were no numpy wheels for these:
CIBW_SKIP: pp37-* pp38-* pp39-* pp310-* cp39-manylinux_i686 cp310-manylinux_i686 cp311-manylinux_i686 cp312-manylinux_i686 *-musllinux_*
# configure cibuildwheel to build native archs ('auto'), and some
# emulated ones
CIBW_ARCHS_LINUX: auto aarch64
# Quick test with C code using NumPy C API:
CIBW_TEST_COMMAND: "python {package}/Tests/test_Cluster.py"

Expand All @@ -26,6 +29,12 @@ jobs:
fetch-depth: 0 # Optional
submodules: true # Optional, use if you have submodules

- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v3
with:
platforms: all

- name: Checkout tag/commit
run: |
git submodule update --init biopython
Expand Down

0 comments on commit 89296d2

Please sign in to comment.