Skip to content

Commit

Permalink
Install hdf5 library when testing under Python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
jwodder committed Nov 11, 2022
1 parent 385950b commit d8d710a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,16 @@ jobs:
with:
python-version: ${{ matrix.python }}

- name: Install hdf5 (Ubuntu)
if: matrix.python == '3.11' && startsWith(matrix.os, 'ubuntu')
run: sudo apt-get update && sudo apt-get install -y libhdf5-dev

- name: Install hdf5 (macOS)
if: matrix.python == '3.11' && startsWith(matrix.os, 'macos')
run: |
brew install [email protected]
brew link [email protected]
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
Expand Down

0 comments on commit d8d710a

Please sign in to comment.