Skip to content

Commit 76de8f0

Browse files
authored
Merge pull request #72 from ModECI/test_neuroml
Testing on py 3.12 and macos-14 (which will be default macos-latest soon)
2 parents 7930017 + e868fa4 commit 76de8f0

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,13 @@ jobs:
2626
strategy:
2727
fail-fast: false
2828
matrix:
29-
python-version: [ "3.8", "3.9", "3.10", "3.11"]
30-
runs-on: [ubuntu-latest, macos-latest, windows-latest]
29+
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
30+
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)