Skip to content

Commit

Permalink
Fix pre-commit checks
Browse files Browse the repository at this point in the history
  • Loading branch information
mwydmuch committed Aug 17, 2024
1 parent d0ed738 commit 3956631
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
platforms: all

- name: Build manylinux wheels
if: matrix.os == 'ubuntu-22.04'
if: matrix.os == 'ubuntu-22.04'
uses: pypa/[email protected]
env:
# Configure cibuildwheel to build native archs, and some emulated ones
Expand All @@ -50,20 +50,20 @@ jobs:
CIBW_REPAIR_WHEEL_COMMAND_LINUX: >
auditwheel show {wheel} && auditwheel repair -w {dest_dir} {wheel}
- name: Build macOS Intel wheels
if: matrix.os == 'macos-13'
- name: Build macOS Intel wheels
if: matrix.os == 'macos-13'
uses: pypa/[email protected]
env:
CIBW_ARCHS_MACOS: x86_64
CIBW_BUILD_VERBOSITY: 3

- name: Build macOS Apple Silicon wheels
if: matrix.os == 'macos-14'
- name: Build macOS Apple Silicon wheels
if: matrix.os == 'macos-14'
uses: pypa/[email protected]
env:
CIBW_ARCHS_MACOS: arm64
CIBW_BUILD_VERBOSITY: 3

- name: Report built wheels
run: |
ls -l ./wheelhouse/*.whl
Expand Down

0 comments on commit 3956631

Please sign in to comment.