Skip to content

Commit

Permalink
update build
Browse files Browse the repository at this point in the history
  • Loading branch information
gesellkammer committed Apr 17, 2024
1 parent 75f4b7f commit 6fe8d06
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,16 @@ jobs:
run: python -m pip install cibuildwheel twine virtualenv numpy

- name: Build wheels
uses: pypa/cibuildwheel@v2.9.0
env:
CIBW_BUILD: 'cp39-* cp310-* cp311*'
CIBW_SKIP: 'pp* *686* *-musllinux_*'
CIBW_ARCHS_MACOS: 'x86_64 arm64'
CIBW_BUILD: 'cp39-* cp310-* cp311-* cp312-*'
# We don't build for arm because the fftw lib is still not included
# See the cirrus build
CIBW_ARCHS_MACOS: 'x86_64'
CIBW_SKIP: 'pp* *686* *-musllinux_*'
CIBW_BUILD_VERBOSITY: 2
CIBW_REPAIR_WHEEL_COMMAND_MACOS: delocate-wheel --require-archs {delocate_archs} -w {dest_dir} -v {wheel}
run: |
python -m cibuildwheel --output-dir wheelhouse
- uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 6fe8d06

Please sign in to comment.