Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions python/sdist/amici/setuptools.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,14 +112,16 @@ def get_hdf5_config() -> PackageInfo:
'/usr/include/hdf5/serial',
'/usr/local/include',
'/usr/include', # travis ubuntu xenial, centos
'/usr/local/Cellar/hdf5/1.10.2_1/include' # travis macOS
'/usr/local/Cellar/hdf5/1.10.2_1/include', # travis macOS
'/opt/homebrew/Cellar/hdf5/1.12.2_2/include'
]
hdf5_library_dir_hints = [
'/usr/lib/x86_64-linux-gnu/', # travis ubuntu xenial
'/usr/lib/x86_64-linux-gnu/hdf5/serial',
'/usr/local/lib',
'/usr/lib64/', # CentOS
'/usr/local/Cellar/hdf5/1.10.2_1/lib' # travis macOS
'/usr/local/Cellar/hdf5/1.10.2_1/lib', # travis macOS
'/opt/homebrew/Cellar/hdf5/1.12.2_2/lib'
]

# special treatment for conda environments
Expand Down