Skip to content

Commit a9c4312

Browse files
authored
Merge pull request #15 from OpenSourceBrain/development
Tested with py 3.13
2 parents ece5a5d + fe20f55 commit a9c4312

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+12654
-7817
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,25 +13,26 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: [ 3.8, 3.9, "3.10" ]
16+
python-version: [ 3.9, "3.10", "3.11", "3.12" ]
1717
engine: [ jNeuroML, jNeuroML_NEURON, jNeuroML_NetPyNE, jNeuroML_validate, jNeuroML_PyNN_NEURON ]
1818

1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
21+
2122
- name: Set up Python ${{ matrix.python-version }}
22-
uses: actions/setup-python@v3
23+
uses: actions/setup-python@v5
2324
with:
2425
python-version: ${{ matrix.python-version }}
26+
2527
- name: Install OMV
2628
run: |
2729
pip install git+https://github.com/OpenSourceBrain/osb-model-validation
2830
pip install scipy sympy matplotlib cython pandas tables
2931
30-
pip install 'numpy<=1.23.0' # see https://github.com/OpenSourceBrain/osb-model-validation/issues/91
31-
3232
- name: Run OMV tests on engine ${{ matrix.engine }}
3333
run: |
3434
omv all -V --engine=${{ matrix.engine }}
35+
3536
- name: OMV final version info
3637
run: |
3738
omv list -V # list installed engines

.github/workflows/non_omv.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,23 @@ jobs:
1111

1212
runs-on: ubuntu-latest
1313
strategy:
14+
fail-fast: false
1415
matrix:
15-
python-version: [ 3.8, 3.9 ]
16+
python-version: [ 3.9, "3.11", "3.12" , "3.13" ]
1617

1718
steps:
18-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
20+
1921
- name: Set up Python ${{ matrix.python-version }}
20-
uses: actions/setup-python@v3
22+
uses: actions/setup-python@v5
2123
with:
2224
python-version: ${{ matrix.python-version }}
25+
2326
- name: Install OpenCortex
2427
run: |
2528
pip install .
29+
pip install ruff
30+
2631
- name: Run some examples
2732
run: |
2833
echo "Running non OMV tests..."

.travis.yml

Lines changed: 0 additions & 56 deletions
This file was deleted.

0 commit comments

Comments
 (0)