Skip to content

Commit

Permalink
Merge pull request #7 from OpenSourceBrain/development
Browse files Browse the repository at this point in the history
Test on >=py3.9
  • Loading branch information
pgleeson authored Aug 22, 2023
2 parents 24c7aff + f27796b commit fed0c8b
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 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.7, 3.9 ]
python-version: [ 3.9, "3.10" ]
engine:
- jNeuroML
- jNeuroML_NEURON
Expand All @@ -25,17 +25,19 @@ jobs:
- PyNN_Nest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v3
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 'numpy<=1.23.0' # see https://github.com/OpenSourceBrain/osb-model-validation/issues/91
- name: Run OMV tests on engine ${{ matrix.engine }} & additional tests
run: |
Expand Down

0 comments on commit fed0c8b

Please sign in to comment.