Skip to content

Commit

Permalink
Fix brew in wheel building (#208)
Browse files Browse the repository at this point in the history
  • Loading branch information
Benoit Coste authored Jan 29, 2021
1 parent 5aea894 commit 689338b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/publish-sdist-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,11 @@ jobs:
- name: Build wheels Mac OS
if: runner.os == 'macOS'
env:
CIBW_BEFORE_BUILD: 'brew update; brew unlink gcc@8 gcc@9; brew install cmake hdf5'
CIBW_BEFORE_BUILD: |
brew update
brew unlink gcc@8 gcc@9
brew install cmake
brew install hdf5
run: |
python -m cibuildwheel --output-dir dist
- name: Store wheel as artifact
Expand Down

0 comments on commit 689338b

Please sign in to comment.