Skip to content

Commit fed0c8b

Browse files
authored
Merge pull request #7 from OpenSourceBrain/development
Test on >=py3.9
2 parents 24c7aff + f27796b commit fed0c8b

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/omv-ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
python-version: [ 3.7, 3.9 ]
17+
python-version: [ 3.9, "3.10" ]
1818
engine:
1919
- jNeuroML
2020
- jNeuroML_NEURON
@@ -25,17 +25,19 @@ jobs:
2525
- PyNN_Nest
2626

2727
steps:
28-
- uses: actions/checkout@v2
28+
- uses: actions/checkout@v3
2929

3030
- name: Set up Python ${{ matrix.python-version }}
31-
uses: actions/setup-python@v2
31+
uses: actions/setup-python@v3
3232
with:
3333
python-version: ${{ matrix.python-version }}
3434

3535
- name: Install OMV
3636
run: |
3737
pip install git+https://github.com/OpenSourceBrain/osb-model-validation
3838
pip install scipy sympy matplotlib cython pandas tables
39+
40+
pip install 'numpy<=1.23.0' # see https://github.com/OpenSourceBrain/osb-model-validation/issues/91
3941
4042
- name: Run OMV tests on engine ${{ matrix.engine }} & additional tests
4143
run: |

0 commit comments

Comments
 (0)