Skip to content

Commit 3956631

Browse files
committed
Fix pre-commit checks
1 parent d0ed738 commit 3956631

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build-wheels.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
platforms: all
4242

4343
- name: Build manylinux wheels
44-
if: matrix.os == 'ubuntu-22.04'
44+
if: matrix.os == 'ubuntu-22.04'
4545
uses: pypa/[email protected]
4646
env:
4747
# Configure cibuildwheel to build native archs, and some emulated ones
@@ -50,20 +50,20 @@ jobs:
5050
CIBW_REPAIR_WHEEL_COMMAND_LINUX: >
5151
auditwheel show {wheel} && auditwheel repair -w {dest_dir} {wheel}
5252
53-
- name: Build macOS Intel wheels
54-
if: matrix.os == 'macos-13'
53+
- name: Build macOS Intel wheels
54+
if: matrix.os == 'macos-13'
5555
uses: pypa/[email protected]
5656
env:
5757
CIBW_ARCHS_MACOS: x86_64
5858
CIBW_BUILD_VERBOSITY: 3
5959

60-
- name: Build macOS Apple Silicon wheels
61-
if: matrix.os == 'macos-14'
60+
- name: Build macOS Apple Silicon wheels
61+
if: matrix.os == 'macos-14'
6262
uses: pypa/[email protected]
6363
env:
6464
CIBW_ARCHS_MACOS: arm64
6565
CIBW_BUILD_VERBOSITY: 3
66-
66+
6767
- name: Report built wheels
6868
run: |
6969
ls -l ./wheelhouse/*.whl

0 commit comments

Comments
 (0)