We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67855c0 commit 05ea8b9Copy full SHA for 05ea8b9
1 file changed
.github/workflows/pytest.yaml
@@ -49,6 +49,12 @@ jobs:
49
python-version: ${{ matrix.PYTHON }}
50
auto-activate-base: false
51
use-only-tar-bz2: true
52
+ # annoying fix for missing fortran (find gfortran that was used to compile numpy)
53
+ - name: Fix NumPy libgfortran (Linux only)
54
+ if: runner.os == 'Linux'
55
+ shell: bash -l {0}
56
+ run: |
57
+ conda install -n seismic -c conda-forge numpy --yes
58
59
# To keep Conda activated you have to use 'shell: bash -l {0}' line
60
# To specifiy the shell
0 commit comments