Skip to content

Commit

Permalink
Stop cibuildwheel from building for Python 3.12 with the env CIBW_BUI…
Browse files Browse the repository at this point in the history
…LD argument
  • Loading branch information
robbmcleod committed Sep 12, 2023
1 parent 30e99f3 commit 40a3e68
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
permissions:
contents: write

env:
CIBW_BUILD: ${{ matrix.cibw_build }}

strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
Expand Down

2 comments on commit 40a3e68

@QuLogic
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Any reason to skip Python 3.12, which is out now? Also, I see there are wheels on the GitHub release, but it doesn't look like anything was uploaded to PyPI?

@QuLogic
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, looking at the build, it looks like you just caught NumPy before it had 3.12 wheels out. They should be fine to build now.

Please sign in to comment.