We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7712e9 commit 8842896Copy full SHA for 8842896
1 file changed
.github/workflows/deploy.yaml
@@ -30,7 +30,9 @@ jobs:
30
CIBW_ARCHS: ${{matrix.arch}}
31
# Skip building musllinux wheels for aarch64, each one currently takes
32
# more than 2 hours to build.
33
- CIBW_SKIP: '*-musllinux_aarch64'
+ # Skip also building the PyPy 3.7 wheel for macOS, because numpy
34
+ # doesn't have a wheel on PyPI and it fails to install.
35
+ CIBW_SKIP: '*-musllinux_aarch64 pp37-macosx_x86_64'
36
- name: Check packages
37
run: twine check dist/*
38
- uses: actions/upload-artifact@v2
0 commit comments