Skip to content

Commit

Permalink
🐛 fix missing macOS x86 wheels (#202)
Browse files Browse the repository at this point in the history
## 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>
  • Loading branch information
burgholzer authored Dec 15, 2022
1 parent f618170 commit bf4a2ed
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ jobs:
architecture: ${{ matrix.config.arch }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- if: ${{ matrix.config.arch }} == 'arm64'
- if: ${{ matrix.config.arch == 'arm64' }}
name: Set Architecture to arm64 if necessary
run: echo "CIBW_ARCHS_MACOS=arm64" >> $GITHUB_ENV
- name: Build wheels
uses: pypa/cibuildwheel@v2.11.3
Expand Down

0 comments on commit bf4a2ed

Please sign in to comment.