Skip to content

Commit e76d344

Browse files
authored
Merge pull request #77 from ModECI/development
To 0.3.5; ensures numpy<2 in tests
2 parents 21a644e + ab2ba7a commit e76d344

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

.github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ jobs:
4949
- name: Install package
5050
run: |
5151
python -m pip install --upgrade pip
52+
pip install 'numpy<2.0.0' # due to lingering issues with other modules & numpy...
5253
pip install .[dev]
5354
5455
- name: Lint with flake8

docs/sphinx/source/api/Contributors.md

+1-1
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 2024-04-25.
6+
This page is generated periodically, most recently on 2024-06-18.
77

88
- Padraig Gleeson ([@pgleeson](https://github.com/pgleeson))
99
- Manifest Chakalov ([@mqnifestkelvin](https://github.com/mqnifestkelvin))

setup.cfg

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ classifiers =
1616
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
1717
Natural Language :: English
1818
Operating System :: OS Independent
19-
Programming Language :: Python :: 3.7
2019
Topic :: Scientific/Engineering
2120
Intended Audience :: Science/Research
2221
Programming Language :: Python
@@ -26,6 +25,7 @@ classifiers =
2625
Programming Language :: Python :: 3.9
2726
Programming Language :: Python :: 3.10
2827
Programming Language :: Python :: 3.11
28+
Programming Language :: Python :: 3.12
2929
Topic :: Scientific/Engineering
3030
Topic :: Software Development
3131
Typing :: Typed
@@ -87,6 +87,7 @@ dev =
8787
NeuroMLlite>=0.5.3
8888
python-libsbml
8989
modelspec[test]
90+
pre-commit
9091

9192
all =
9293
modelspec[test]

src/modelspec/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.3.4"
1+
__version__ = "0.3.5"
22

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

test_all.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set -ex
33

44
## Install modelspec incl. dev dependencies
55

6-
pip install .[dev]
6+
pip install .[all]
77

88

99
## Test main example

0 commit comments

Comments
 (0)