Skip to content

Commit

Permalink
Found might need to use c-compiler from anaconda.
Browse files Browse the repository at this point in the history
  • Loading branch information
TimothyCera-NOAA committed Jan 19, 2024
1 parent 5e183c5 commit f0d0522
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/build_macosx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,15 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
conda install setuptools nceplibs-ip numpy clang gfortran ninja pip
run: >
conda install
c-compiler
gfortran
nceplibs-ip
ninja
numpy
pip
setuptools
- name: Install with pip
run: |
pip install .
Expand Down
12 changes: 10 additions & 2 deletions .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,16 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
conda install setuptools nceplibs-ip numpy m2w64-gcc-fortran m2w64-gcc-libs ninja pip
run: >
conda install
c-compiler
m2w64-gcc-fortran
m2w64-gcc-libs
nceplibs-ip
ninja
numpy
pip
setuptools
- name: Install with pip
run: |
pip install .
Expand Down

0 comments on commit f0d0522

Please sign in to comment.