Skip to content

Commit

Permalink
Merge pull request #77 from ModECI/development
Browse files Browse the repository at this point in the history
To 0.3.5; ensures numpy<2 in tests
  • Loading branch information
pgleeson authored Jun 18, 2024
2 parents 21a644e + ab2ba7a commit e76d344
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ jobs:
- name: Install package
run: |
python -m pip install --upgrade pip
pip install 'numpy<2.0.0' # due to lingering issues with other modules & numpy...
pip install .[dev]
- name: Lint with flake8
Expand Down
2 changes: 1 addition & 1 deletion docs/sphinx/source/api/Contributors.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Modelspec contributors

This page list names and Github profiles of contributors to Modelspec, listed in no particular order.
This page is generated periodically, most recently on 2024-04-25.
This page is generated periodically, most recently on 2024-06-18.

- Padraig Gleeson ([@pgleeson](https://github.com/pgleeson))
- Manifest Chakalov ([@mqnifestkelvin](https://github.com/mqnifestkelvin))
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ classifiers =
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3.7
Topic :: Scientific/Engineering
Intended Audience :: Science/Research
Programming Language :: Python
Expand All @@ -26,6 +25,7 @@ classifiers =
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Scientific/Engineering
Topic :: Software Development
Typing :: Typed
Expand Down Expand Up @@ -87,6 +87,7 @@ dev =
NeuroMLlite>=0.5.3
python-libsbml
modelspec[test]
pre-commit

all =
modelspec[test]
Expand Down
2 changes: 1 addition & 1 deletion src/modelspec/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.3.4"
__version__ = "0.3.5"

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

Expand Down
2 changes: 1 addition & 1 deletion test_all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set -ex

## Install modelspec incl. dev dependencies

pip install .[dev]
pip install .[all]


## Test main example
Expand Down

0 comments on commit e76d344

Please sign in to comment.