Skip to content

Commit

Permalink
Merge pull request #1070 from dirac-institute/mschwamb-patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
mschwamb authored Nov 25, 2024
2 parents 3bf965d + 6b1bd17 commit 2d54e45
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/smoke-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install hdf5 on mac
if: ${{startsWith( matrix.os, 'macos' ) }}
run: brew install hdf5
run: |
python -m pip install --upgrade pip
pip install h5py
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/testing-and-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install hdf5 on mac
if: ${{startsWith( matrix.os, 'macos' ) }}
run: brew install hdf5
run: |
python -m pip install --upgrade pip
pip install h5py
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 2d54e45

Please sign in to comment.