Skip to content

Commit

Permalink
Another attempt to fix hdf5 installation.
Browse files Browse the repository at this point in the history
  • Loading branch information
ndilalla committed May 8, 2024
1 parent da8c5f7 commit 13e4226
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/test_and_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,15 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel h5py
python -m pip install --upgrade pip wheel
pip install --upgrade flake8 coverage pytest-cov cython
if [[ ${{matrix.os}} == macos-latest ]];
then
brew update
brew install hdf5
fi
pip install -e .
- name: Lint with flake8
run: |
Expand Down

0 comments on commit 13e4226

Please sign in to comment.