Skip to content

Commit 8842896

Browse files
committed
Skip building the PyPy 3.7 wheel for macOS
Numpy doesn't have a wheel on PyPI for this combination and it fails to install since macos-latest has changed to version 11.
1 parent b7712e9 commit 8842896

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/deploy.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ jobs:
3030
CIBW_ARCHS: ${{matrix.arch}}
3131
# Skip building musllinux wheels for aarch64, each one currently takes
3232
# more than 2 hours to build.
33-
CIBW_SKIP: '*-musllinux_aarch64'
33+
# 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'
3436
- name: Check packages
3537
run: twine check dist/*
3638
- uses: actions/upload-artifact@v2

0 commit comments

Comments
 (0)