Skip to content

Commit

Permalink
Symlinks gfortran to allow compilers to run
Browse files Browse the repository at this point in the history
  • Loading branch information
holm10 committed Mar 11, 2024
1 parent ed9022c commit 58419e5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ jobs:
echo ~/.local/opt/node/bin >> $GITHUB_PATH
fi
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.pyversions }}
Expand All @@ -86,11 +85,12 @@ jobs:
- name: Print gcc version
run: gcc --version

- name: Install gfortran
run: xcode-select --install

- name: Print gfortran version
run: gfortran --version
- name: symlink gfortran (macOS)
if: runner.os == 'macOS'
run: |
# make sure gfortran is available
ln -s /usr/local/bin/gfortran-13 /usr/local/bin/gfortran
gfortran --version
- name: Build wheels
run: python -m build
Expand Down

0 comments on commit 58419e5

Please sign in to comment.