Skip to content

Commit fbf1924

Browse files
authored
Merge pull request #85 from ModECI/test_py313
Support for py3.13
2 parents 9cfc8d1 + 2842b9a commit fbf1924

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
strategy:
2727
fail-fast: false
2828
matrix:
29-
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
29+
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
3030
runs-on: [ubuntu-latest, macos-latest, windows-latest]
3131
exclude:
3232
- runs-on: macos-latest
@@ -49,7 +49,6 @@ 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...
5352
pip install .[dev]
5453
5554
- name: Lint with flake8
@@ -129,7 +128,6 @@ jobs:
129128
# Run OMV tests on all engines
130129
cd examples
131130
omv all -V
132-
133131
omv list -V # list installed engines
134132
135133
- name: Final version info

setup.cfg

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ classifiers =
2626
Programming Language :: Python :: 3.10
2727
Programming Language :: Python :: 3.11
2828
Programming Language :: Python :: 3.12
29+
Programming Language :: Python :: 3.13
2930
Topic :: Scientific/Engineering
3031
Topic :: Software Development
3132
Typing :: Typed
@@ -44,7 +45,7 @@ install_requires =
4445
typing_compat;python_version<'3.8'
4546

4647

47-
python_requires = >=3.7
48+
python_requires = >=3.8
4849
include_package_data = True
4950
package_dir =
5051
=src
@@ -83,8 +84,8 @@ docs =
8384

8485
dev =
8586
flake8
86-
pyneuroml>=0.7.2
87-
NeuroMLlite>=0.5.3
87+
pyneuroml>=1.3.15
88+
NeuroMLlite>=0.6.1
8889
python-libsbml
8990
modelspec[test]
9091
pre-commit

0 commit comments

Comments
 (0)