Skip to content

Commit

Permalink
Skip PyPy 3.10 due to lack of numpy wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
alugowski committed Oct 3, 2023
1 parent dd487d7 commit b776bf0
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,11 @@ jobs:
# Architectures to build specified in matrix
CIBW_ARCHS: ${{ matrix.cibw_archs }}

# No 32-bit builds, no musllinux, no PyPy aarch64 (only due to build speed, numpy does not ship aarch64 pypy wheels)
CIBW_SKIP: "*-win32 *_i686 *musl* pp*aarch64"
# No 32-bit builds
# no musllinux
# no PyPy aarch64 (only due to build speed, numpy does not ship aarch64 pypy wheels)
# as of writing numpy does not support pypy 3.10
CIBW_SKIP: "*-win32 *_i686 *musl* pp*aarch64 pp310*"

# Use delvewheel on Windows.
# This copies graphblas.dll into the wheel. "repair" in cibuildwheel parlance includes copying any shared
Expand Down

0 comments on commit b776bf0

Please sign in to comment.