From 4b662402f26a8a354d3919c0cbf78c36a3315806 Mon Sep 17 00:00:00 2001
From: Padraig Gleeson
Date: Mon, 18 May 2026 18:25:51 +0100
Subject: [PATCH] Updates to GHA
---
.github/workflows/omv-ci.yml | 10 +++++-----
.gitignore | 1 +
2 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/.github/workflows/omv-ci.yml b/.github/workflows/omv-ci.yml
index c914228..48822ff 100644
--- a/.github/workflows/omv-ci.yml
+++ b/.github/workflows/omv-ci.yml
@@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- python-version: [ "3.11" ]
+ python-version: [ "3.12", "3.13" ]
engine:
- jNeuroML
- jNeuroML_NEURON
@@ -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: |
diff --git a/.gitignore b/.gitignore
index 1cd3493..84c15fb 100644
--- a/.gitignore
+++ b/.gitignore
@@ -49,3 +49,4 @@ nnn/
*_eden.py
/NeuroML2/nmllite/*_nrn.py
/NeuroML2/nmllite/*.mod
+/.DS_Store