Skip to content

Commit 28224ae

Browse files
Work on #455, py314
1 parent f560466 commit 28224ae

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,20 @@ jobs:
99
matrix:
1010
# os: [ubuntu-latest, windows-latest, macos-latest]
1111
os: [ubuntu-latest]
12-
python-version: ["3.11", "3.12", "3.13"]
12+
python-version: ["3.11", "3.12", "3.13", "3.14"]
1313
exclude:
1414
- os: windows-latest
1515
python-version: "3.11"
1616
- os: windows-latest
1717
python-version: "3.12"
18+
- os: windows-latest
19+
python-version: "3.14"
1820
- os: macos-latest
1921
python-version: "3.11"
2022
- os: macos-latest
2123
python-version: "3.12"
24+
- os: macos-latest
25+
python-version: "3.14"
2226

2327
steps:
2428
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ classifiers = [
2222
"Programming Language :: Python :: 3.11",
2323
"Programming Language :: Python :: 3.12",
2424
"Programming Language :: Python :: 3.13",
25+
"Programming Language :: Python :: 3.14",
2526
"Programming Language :: Python :: Implementation :: CPython",
2627
"Topic :: Scientific/Engineering",
2728
"Topic :: Scientific/Engineering :: Bio-Informatics",
@@ -47,7 +48,7 @@ dependencies = [
4748
"scipy>=1.14",
4849
"pandas>=2.2.0",
4950
"python-libsbml>=5.20.5",
50-
"antimony>=3.0.0",
51+
"antimony>=3.1.0",
5152
"libroadrunner>=2.8.0",
5253
"pint>=0.25",
5354

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = mypy, py3.{11,12,13}
2+
envlist = mypy, py3.{11,12,13,14}
33

44
[testenv]
55
package = wheel

0 commit comments

Comments
 (0)