Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/workflows/omv-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
runs-on: [ ubuntu-22.04, macos-14 ]
runs-on: [ ubuntu-22.04] #, macos-14
engine:
- jNeuroML
- jNeuroML_NEURON
Expand All @@ -26,21 +26,22 @@ jobs:
- "EDEN:0.2.2"
- "EDEN:0.2.3"

python-version: [ "3.12" ]
python-version: [ "3.11", "3.12" ]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

- name: Install OMV
run: |
pip install setuptools==80 # needed for eden on Python 3.12...

pip install git+https://github.com/OpenSourceBrain/osb-model-validation

pip install setuptools --upgrade # needed for eden on Python 3.12

- name: Run OMV tests on engine ${{ matrix.engine }}
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pip-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- name: Install EDEN using pip
run: |
pip install setuptools --upgrade # needed for Python 3.12
pip install setuptools==80 # needed for Python 3.12
pip install eden-simulator

- name: Run EDEN example directly
Expand Down
Loading