From 419bfaf6e771a255ccc79275b899da71a06439bd Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Fri, 13 Sep 2024 10:44:48 +0200 Subject: [PATCH] Update cibuildwheel --- .github/workflows/cibuildwheel.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cibuildwheel.yml b/.github/workflows/cibuildwheel.yml index d757180c9..df45822f9 100644 --- a/.github/workflows/cibuildwheel.yml +++ b/.github/workflows/cibuildwheel.yml @@ -18,10 +18,17 @@ jobs: steps: - uses: actions/checkout@v4 + # aarch64 (arm) is built via qemu emulation + # QEMU is sadly too slow. We need to wait for public ARM support + #- name: Set up QEMU + # if: runner.os == 'Linux' + # uses: docker/setup-qemu-action@v3 + # with: + # platforms: all - name: Build wheels uses: pypa/cibuildwheel@v2.19.1 env: - CIBW_SOME_OPTION: value + CIBW_ARCHS_LINUX: auto aarch64 with: package-dir: . output-dir: wheelhouse