Skip to content

Commit e868fa4

Browse files
committed
Fixes for running GHA on macos-14
1 parent 34facfb commit e868fa4

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ jobs:
2828
matrix:
2929
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
3030
runs-on: [ubuntu-latest, macos-latest, macos-14, windows-latest]
31+
exclude:
32+
- runs-on: macos-14
33+
python-version: "3.8"
34+
- runs-on: macos-14
35+
python-version: "3.9"
3136

3237
steps:
3338
- uses: actions/checkout@v4
@@ -36,6 +41,10 @@ jobs:
3641
with:
3742
python-version: ${{ matrix.python-version }}
3843

44+
- name: Install HDF5 for pytables on macos-14
45+
if: ${{ matrix.runs-on == 'macos-14' }}
46+
run: |
47+
brew install hdf5
3948
4049
- name: Install package
4150
run: |

0 commit comments

Comments
 (0)