Skip to content

Commit

Permalink
Fix MacOS Fortran compiler info
Browse files Browse the repository at this point in the history
  • Loading branch information
lindonroberts committed May 30, 2024
1 parent 5b393ac commit 18e8be6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/upload_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ jobs:

# Used to host cibuildwheel
- uses: actions/setup-python@v3

- name: Update Fortran compiler information (MacOS only)
if: runner.os == 'macOS'
run: |
sudo ln -s /opt/homebrew/bin/gfortran-12 /opt/homebrew/bin/gfortran
export FC="/opt/homebrew/bin/gfortran"
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.17.0
Expand Down

0 comments on commit 18e8be6

Please sign in to comment.