We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cd833d0 + b2cd13a commit 562e14aCopy full SHA for 562e14a
.github/workflows/test_on_push.yml
@@ -47,11 +47,17 @@ jobs:
47
sudo apt install gfortran gcc libopenblas-dev graphviz
48
sudo apt install python${{ matrix.python-version }}.dev
49
50
+ # Added fixes to homebrew installs:
51
+ # rm -f /usr/local/bin/2to3
52
+ # (see https://github.com/actions/virtual-environments/issues/2322)
53
+ # brew unlink gcc@8 gcc@9
54
+ # (see https://github.com/actions/virtual-environments/issues/2391)
55
- name: Install MacOS system dependencies
56
if: matrix.os == 'macos-latest'
57
run: |
58
rm -f /usr/local/bin/2to3
59
brew update
60
+ brew unlink gcc@8 gcc@9
61
brew install graphviz
62
brew install openblas
63
0 commit comments