Skip to content

Commit

Permalink
Only build cpython, skip 3.12 for now
Browse files Browse the repository at this point in the history
  • Loading branch information
maxnoe committed Nov 17, 2023
1 parent 43f9824 commit daa7378
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/wheels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,11 @@ jobs:

- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
# to supply options, put them in 'env', like:
# env:
# CIBW_SOME_OPTION: value
env:
# only build cpython
CIBW_BUILD: "cp*"
# but not 3.12 as numpy is not yet released with 3.12 support
CIBW_SKIP: "cp312-*,"

- uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit daa7378

Please sign in to comment.