diff --git a/.github/workflows/build-wheels.yml b/.github/workflows/build-wheels.yml index 8a66f7d..31f9c86 100644 --- a/.github/workflows/build-wheels.yml +++ b/.github/workflows/build-wheels.yml @@ -24,10 +24,17 @@ jobs: - name: Install cibuildwheel run: python -m pip install cibuildwheel==2.16.5 + - name: Set up QEMU + if: runner.os == 'Linux' + uses: docker/setup-qemu-action@v3 + with: + platforms: all + - name: Build wheels run: python -m cibuildwheel --output-dir wheelhouse env: CIBW_ARCHS_MACOS: "x86_64 arm64" + CIBW_ARCHS_LINUX: "auto aarch64" - uses: actions/upload-artifact@v2 with: