Skip to content

Commit

Permalink
Change installation of gsl
Browse files Browse the repository at this point in the history
  • Loading branch information
niclaurenti committed Nov 9, 2023
1 parent 6ea64cd commit 6f66219
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/pip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, macos-latest]
# platform: [ubuntu-latest, macos-latest]
platform: [ubuntu-latest]
python-version: [3.9]
steps:
- uses: actions/checkout@v3
Expand All @@ -24,7 +25,7 @@ jobs:
- name: Install GNU Fortran
uses: modflowpy/install-gfortran-action@v1
- name: Install GSL
run: apt-get -y install libgsl-dev
run: sudo apt-get -y install libgsl-dev
- name: Build and install
run: pip install .[test]
- name: Test
Expand All @@ -51,15 +52,16 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, macos-latest]
#platform: [ubuntu-latest, macos-latest]
platform: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Install GNU Fortran
uses: modflowpy/install-gfortran-action@v1
- name: Install GSL
run: apt-get -y install libgsl-dev
run: sudo apt-get -y install libgsl-dev
- uses: pypa/[email protected]
env:
CIBW_ARCHS_MACOS: auto universal2
Expand Down

0 comments on commit 6f66219

Please sign in to comment.