Skip to content

Commit d8e421c

Browse files
Merge pull request #459 from matthiaskoenig/py314
Py314 support
2 parents c59bf8a + e16c497 commit d8e421c

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
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: 1 addition & 0 deletions
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",

release-notes/0.9.5.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,6 @@ following changes:
1212
- update python-libsbml to 5.21.0
1313
- update libroadrunner to 2.9.0
1414
- update antimony to 3.1.1
15+
- support python 3.14
1516

1617
Your sbmlutils team

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)