install hdf5

This commit is contained in:
sneakers-the-rat 2023-10-09 23:40:31 -07:00
parent 0508e3b620
commit 729da40dfd
2 changed files with 6 additions and 1 deletions

View file

@ -14,6 +14,11 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Install system libraries
run: |
sudo apt update
sudo apt install -y libhdf5-dev hdf5-tools
- name: Set up python
uses: actions/setup-python@v4
with:

View file

@ -85,6 +85,6 @@ testpaths = [
]
doctest_optionflags = "NORMALIZE_WHITESPACE"
filterwarnings = [
"ignore:Deprecated NumPy 1.24:DeprecationWarning",
"ignore::DeprecationWarning",
"ignore:parse_obj:pydantic.PydanticDeprecatedSince20"
]