Skip to content

Commit

Permalink
Skip building the PyPy 3.7 wheel for macOS
Browse files Browse the repository at this point in the history
Numpy doesn't have a wheel on PyPI for this combination and it fails
to install since macos-latest has changed to version 11.
  • Loading branch information
nsoranzo committed Dec 16, 2021
1 parent b7712e9 commit 8842896
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ jobs:
CIBW_ARCHS: ${{matrix.arch}}
# Skip building musllinux wheels for aarch64, each one currently takes
# more than 2 hours to build.
CIBW_SKIP: '*-musllinux_aarch64'
# Skip also building the PyPy 3.7 wheel for macOS, because numpy
# doesn't have a wheel on PyPI and it fails to install.
CIBW_SKIP: '*-musllinux_aarch64 pp37-macosx_x86_64'
- name: Check packages
run: twine check dist/*
- uses: actions/upload-artifact@v2
Expand Down

0 comments on commit 8842896

Please sign in to comment.