From 260fc86d458b613c778949ff7f79f76721f3e29f Mon Sep 17 00:00:00 2001 From: Padraig Gleeson Date: Fri, 20 Mar 2026 11:18:12 +0000 Subject: [PATCH 1/4] Update gha actions --- .github/workflows/omv-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/omv-ci.yml b/.github/workflows/omv-ci.yml index 2ab301a..d2eaf44 100644 --- a/.github/workflows/omv-ci.yml +++ b/.github/workflows/omv-ci.yml @@ -29,10 +29,10 @@ jobs: python-version: [ "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 }} From 383479acfc674c0426d70ccd5abd591b0234142f Mon Sep 17 00:00:00 2001 From: Padraig Gleeson Date: Fri, 20 Mar 2026 11:21:34 +0000 Subject: [PATCH 2/4] test more options --- .github/workflows/omv-ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/omv-ci.yml b/.github/workflows/omv-ci.yml index d2eaf44..862816a 100644 --- a/.github/workflows/omv-ci.yml +++ b/.github/workflows/omv-ci.yml @@ -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 @@ -26,7 +26,7 @@ jobs: - "EDEN:0.2.2" - "EDEN:0.2.3" - python-version: [ "3.12" ] + python-version: [ "3.11", "3.12" ] steps: - uses: actions/checkout@v6 @@ -38,9 +38,10 @@ jobs: - name: Install OMV run: | + pip install setuptools --upgrade # 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: | From c929fc90dd4ca8226cac11ca5820829f76bce7a3 Mon Sep 17 00:00:00 2001 From: Padraig Gleeson Date: Fri, 20 Mar 2026 11:29:27 +0000 Subject: [PATCH 3/4] Try: pip install setuptools==80 --- .github/workflows/omv-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/omv-ci.yml b/.github/workflows/omv-ci.yml index 862816a..7b8ef52 100644 --- a/.github/workflows/omv-ci.yml +++ b/.github/workflows/omv-ci.yml @@ -38,8 +38,8 @@ jobs: - name: Install OMV run: | - pip install setuptools --upgrade # needed for eden on Python 3.12 - + pip install setuptools==80 # needed for eden on Python 3.12... + pip install git+https://github.com/OpenSourceBrain/osb-model-validation From f7ef0c9f71a0d034944e5df35855d5b6757f3bd7 Mon Sep 17 00:00:00 2001 From: Padraig Gleeson Date: Fri, 20 Mar 2026 12:42:49 +0000 Subject: [PATCH 4/4] Pin setuptools version for Python 3.12 compatibility --- .github/workflows/pip-install.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pip-install.yml b/.github/workflows/pip-install.yml index 50cae26..30b8cf8 100644 --- a/.github/workflows/pip-install.yml +++ b/.github/workflows/pip-install.yml @@ -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