We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8d5c08 commit b531894Copy full SHA for b531894
.github/workflows/wheels.yml
@@ -21,6 +21,12 @@ jobs:
21
22
- uses: actions/setup-python@v2
23
24
+ - name: Set up QEMU
25
+ if: runner.os == 'Linux'
26
+ uses: docker/setup-qemu-action@v1
27
+ with:
28
+ platforms: all
29
+
30
- name: Build wheels
31
uses: pypa/[email protected]
32
env:
@@ -30,6 +36,7 @@ jobs:
36
CIBW_SKIP: "*-musllinux*"
37
CIBW_REPAIR_WHEEL_COMMAND_MACOS: "DYLD_LIBRARY_PATH=/usr/local/lib delocate-listdeps {wheel} && DYLD_LIBRARY_PATH=/usr/local/lib delocate-wheel --require-archs {delocate_archs} -w {dest_dir} {wheel}"
38
CIBW_ARCHS_MACOS: x86_64 universal2
39
+ CIBW_ARCHS_LINUX: x86_64 aarch64
33
40
34
41
- uses: actions/upload-artifact@v2
35
42
with:
0 commit comments