Skip to content

Commit

Permalink
Merge pull request #16 from hiddenSymmetries/lib64_fix
Browse files Browse the repository at this point in the history
Account for lib64 in NETCDF library path
  • Loading branch information
mbkumar authored Apr 30, 2024
2 parents 8819070 + 69d0301 commit 97f1d6b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: [3.8, 3.9, "3.10"]
os: [ubuntu-latest, macos-latest]

runs-on: ${{ matrix.os }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
steps:
- uses: actions/checkout@master

- name: Set up Python 3.7
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.8

# At some point we may want to distribute wheels, but for now just distribute the source and build separately on each machine.
#- name: Install wheel
Expand Down
2 changes: 1 addition & 1 deletion cmake/FindNetCDF.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ find_path (NETCDF_INCLUDES netcdf.h

#find_library (NETCDF_LIBRARIES_C NAMES netcdf)
find_library (NETCDF_LIBRARIES_C NAMES netcdf
HINTS NETCDF_DIR ENV NETCDF_DIR ENV NETCDF_HOME ENV NETCDFDIR PATH_SUFFIXES lib)
HINTS NETCDF_DIR ENV NETCDF_DIR ENV NETCDF_HOME ENV NETCDFDIR PATH_SUFFIXES lib lib64)
mark_as_advanced(NETCDF_LIBRARIES_C)

set (NetCDF_has_interfaces "YES") # will be set to NO if we're missing any interfaces
Expand Down

0 comments on commit 97f1d6b

Please sign in to comment.