Skip to content

Commit

Permalink
Merge pull request #188 from NeuralEnsemble/experimental
Browse files Browse the repository at this point in the history
Test on macos-14, which will become default mac-latest version
  • Loading branch information
pgleeson committed Apr 29, 2024
2 parents 5810442 + b406341 commit 5dcc898
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ jobs:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
runs-on: [ubuntu-latest, windows-latest, macos-latest]
exclude:
- runs-on: macos-latest
python-version: "3.8"
- runs-on: macos-latest
python-version: "3.9"

steps:
- uses: actions/checkout@v4
Expand All @@ -30,6 +35,11 @@ jobs:
#sudo apt-get install libhdf5-serial-dev liblzo2-dev libgraphviz-dev -y
python -m pip install --upgrade pip
- name: Install HDF5 for pytables on macos-latest
if: ${{ matrix.runs-on == 'macos-latest' }}
run: |
brew install hdf5
- name: Build package
run: |
pip install .[full]
Expand All @@ -41,7 +51,6 @@ jobs:
pytest -vs
- name: Run examples
if: ${{ matrix.python-version != '3.7' || matrix.runs-on != 'macos-latest' }} # issue with _bz2 module...
run: |
cd neuroml/examples
python run_all.py
Expand Down

0 comments on commit 5dcc898

Please sign in to comment.