Skip to content

Commit

Permalink
Explain CIBW_SKIPs #major
Browse files Browse the repository at this point in the history
  • Loading branch information
moble committed Sep 30, 2024
1 parent 18eb2f2 commit 48ad7b4
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,13 @@ jobs:
archs: "aarch64"

env:
PIP_ONLY_BINARY: "scipy,numpy"
CIBW_SKIP: cp36-* cp37-* cp38-* cp39-* pp* *-musllinux* *-win32 *-manylinux_i686 cp313-*
# Exclude 32-bit builds: *-win32 *-manylinux_i686
# Exclude python versions not supported by numpy: cp36-* cp37-* cp38-* cp39-* pp*
# Exclude musllinux builds: *-musllinux*
# Exclude python versions not yet supported by numba: cp313-*
# https://numpy.org/neps/nep-0029-deprecation_policy.html
# https://numba.readthedocs.io/en/stable/user/installing.html#numba-support-info
CIBW_SKIP: *-win32 *-manylinux_i686 cp36-* cp37-* cp38-* cp39-* pp* *-musllinux* cp313-*
CIBW_ARCHS: ${{matrix.archs}}
CIBW_ARCHS_MACOS: "x86_64 universal2 arm64"
CIBW_BEFORE_BUILD: python -c "print(('#'*130+'\n')*10)" && python -m pip install "numpy>=2.0,<3"
Expand Down

0 comments on commit 48ad7b4

Please sign in to comment.