Skip to content

Commit bf4a2ed

Browse files
authored
🐛 fix missing macOS x86 wheels (#202)
## Description Due to a misconfiguration in the CI, x86 wheels for macOS were no longer being built. This PR fixes the underlying issue. Thanks @hillmich for noticing! ## Checklist: <!--- This checklist serves as a reminder of a couple of things that ensure your pull request will be merged swiftly. --> - [x] The pull request only contains commits that are related to it. - [x] I have added appropriate tests and documentation. - [x] I have made sure that all CI jobs on GitHub pass. - [x] The pull request introduces no new warnings and follows the project's style guidelines. Signed-off-by: Lukas Burgholzer <lukas.burgholzer@jku.at>
1 parent f618170 commit bf4a2ed

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ jobs:
4242
architecture: ${{ matrix.config.arch }}
4343
env:
4444
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
45-
- if: ${{ matrix.config.arch }} == 'arm64'
45+
- if: ${{ matrix.config.arch == 'arm64' }}
46+
name: Set Architecture to arm64 if necessary
4647
run: echo "CIBW_ARCHS_MACOS=arm64" >> $GITHUB_ENV
4748
- name: Build wheels
4849
uses: pypa/cibuildwheel@v2.11.3

0 commit comments

Comments
 (0)