Another whl release request, but I think the release action can be tweaked a little more to also support linux-aarch64.
Here is the example:
- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v3
with:
platforms: all
- name: Build wheels
uses: pypa/cibuildwheel@v2.17.0
env:
# configure cibuildwheel to build native archs ('auto'), and some
# emulated ones
CIBW_ARCHS_LINUX: auto aarch64 ppc64le s390x
Another whl release request, but I think the release action can be tweaked a little more to also support linux-aarch64.
Here is the example: