Skip to content

Commit 4af62db

Browse files
authored
Merge pull request #70 from ModECI/experimental
To v0.3.4
2 parents 490505e + b8004f5 commit 4af62db

File tree

3 files changed

+9
-11
lines changed

3 files changed

+9
-11
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
name: Format
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v3
16-
- uses: actions/setup-python@v3
15+
- uses: actions/checkout@v4
16+
- uses: actions/setup-python@v5
1717
- uses: pre-commit/[email protected]
1818
with:
1919
extra_args: --hook-stage manual --all-files
@@ -28,9 +28,9 @@ jobs:
2828
runs-on: [ubuntu-latest, macos-latest, windows-latest]
2929

3030
steps:
31-
- uses: actions/checkout@v3
31+
- uses: actions/checkout@v4
3232
- name: Set up Python ${{ matrix.python-version }}
33-
uses: actions/setup-python@v3
33+
uses: actions/setup-python@v5
3434
with:
3535
python-version: ${{ matrix.python-version }}
3636

@@ -57,7 +57,6 @@ jobs:
5757
python test.py
5858
5959
- name: Test NeuroML examples
60-
if: ${{ matrix.python-version != '3.7'}}
6160
run: |
6261
6362
cd examples/neuroml2
@@ -66,7 +65,6 @@ jobs:
6665
# Note: NeuroML files will be validated with OMV below
6766
6867
- name: Test SBML examples
69-
if: ${{ matrix.python-version != '3.7'}}
7068
run: |
7169
7270
cd examples/sbml
@@ -76,11 +74,11 @@ jobs:
7674
run: |
7775
pytest tests -v
7876
79-
- name: Install & test NeuroMLlite
77+
- name: Test NeuroMLlite
8078
run: |
8179
git clone --branch development https://github.com/NeuroML/NeuroMLlite.git
8280
cd NeuroMLlite
83-
#pip install . # Use versions of neuroml libs as set in setup.py
81+
# pip install . # Use versions of neuroml libs as set in modelspec's setup.cfg -> dev -> NeuroMLlite
8482
cd examples
8583
python Example1.py
8684
@@ -94,7 +92,6 @@ jobs:
9492
python arrays.py -run # test one example
9593
9694
- name: Build Documentation
97-
if: ${{ matrix.python-version != '3.7'}}
9895
run: |
9996
# Note: contributors generation below fails on py 3.7 due to pandas version...
10097
pip install .[docs]

docs/sphinx/source/api/Contributors.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Modelspec contributors
44

55
This page list names and Github profiles of contributors to Modelspec, listed in no particular order.
6-
This page is generated periodically, most recently on 2023-12-13.
6+
This page is generated periodically, most recently on 2024-02-07.
77

88
- Padraig Gleeson ([@pgleeson](https://github.com/pgleeson))
99
- Manifest Chakalov ([@mqnifestkelvin](https://github.com/mqnifestkelvin))
@@ -12,3 +12,4 @@ This page is generated periodically, most recently on 2023-12-13.
1212
- Parikshit Singh Rathore ([@parikshit14](https://github.com/parikshit14))
1313
- Ankur Sinha ([@sanjayankur31](https://github.com/sanjayankur31))
1414
- kmantel ([@kmantel](https://github.com/kmantel))
15+
- Robert Vickerstaff ([@robertvi](https://github.com/robertvi))

src/modelspec/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.3.3"
1+
__version__ = "0.3.4"
22

33
from .base_types import Base, define, has, field, fields, optional, instance_of, in_
44

0 commit comments

Comments
 (0)