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
10 changes: 5 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:
python-version: [ "3.11" ]
python-version: [ "3.12", "3.13" ]
engine:
- jNeuroML
- jNeuroML_NEURON
Expand All @@ -27,19 +27,19 @@ jobs:
- PyNEURON

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 git+https://github.com/OpenSourceBrain/osb-model-validation
pip install scipy sympy matplotlib cython pandas tables
pip install scipy sympy matplotlib pandas tables "cython<3.1.0" # for nest...

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

- name: Run OMV tests on engine ${{ matrix.engine }}
run: |
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,4 @@ nnn/
*_eden.py
/NeuroML2/nmllite/*_nrn.py
/NeuroML2/nmllite/*.mod
/.DS_Store