Skip to content

Commit 34641c8

Browse files
authored
Merge pull request #189 from aragilar/add-py313
Add python 3.13 to tests/CI
2 parents 5c9ff97 + a0bcc70 commit 34641c8

File tree

9 files changed

+22
-5
lines changed

9 files changed

+22
-5
lines changed

.github/workflows/test-daepack.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ jobs:
2222
tox-env: py311
2323
- python-version: "3.12"
2424
tox-env: py312
25+
- python-version: "3.13"
26+
tox-env: py313
2527

2628
steps:
2729
- uses: actions/checkout@v4

.github/workflows/test-namespace.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ jobs:
4040
tox-env: py312
4141
sundials-precision: double
4242
sundials-index-size: 64
43+
- python-version: "3.13"
44+
sundials-version: "7.1.1"
45+
tox-env: py313
46+
sundials-precision: double
47+
sundials-index-size: 64
4348
- python-version: "3.11"
4449
sundials-version: "7.1.1"
4550
tox-env: check-manifest

.github/workflows/test-overall.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ jobs:
4040
tox-env: py312-test
4141
sundials-precision: double
4242
sundials-index-size: 64
43+
- python-version: "3.13"
44+
sundials-version: "7.1.1"
45+
tox-env: py313-test
46+
sundials-precision: double
47+
sundials-index-size: 64
4348
- python-version: "3.11"
4449
sundials-version: "7.1.1"
4550
tox-env: apidocs

.github/workflows/test-sundials.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ jobs:
4040
tox-env: py312
4141
sundials-precision: double
4242
sundials-index-size: 64
43+
- python-version: "3.13"
44+
sundials-version: "7.1.1"
45+
tox-env: py313
46+
sundials-precision: double
47+
sundials-index-size: 64
4348
- python-version: "3.11"
4449
sundials-version: "7.1.1"
4550
tox-env: check-manifest

packages/scikits-odes-core/tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py37,py38,py39,py310,py311,py312,check-manifest,checkreadme
2+
envlist = py37,py38,py39,py310,py311,py312,py313,check-manifest,checkreadme
33
setenv = LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8
44

55
[testenv]

packages/scikits-odes-daepack/tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py37,py38,py39,py310,py311,py312
2+
envlist = py37,py38,py39,py310,py311,py312,py313
33
setenv = LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8
44

55
[testenv]

packages/scikits-odes-sundials/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools", "numpy", "cython<3", "pkgconfig"]
2+
requires = ["setuptools", "numpy", "cython", "pkgconfig"]
33

44
[project]
55
name = 'scikits-odes-sundials'

packages/scikits-odes-sundials/tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py37,py38,py39,py310,py311,py312,check-manifest,checkreadme
2+
envlist = py37,py38,py39,py310,py311,py312,py313,check-manifest,checkreadme
33
setenv = LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8
44

55
[testenv]

packages/scikits-odes/tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py37,py38,py39,py310,py311,py312,check-manifest,checkreadme
2+
envlist = py37,py38,py39,py310,py311,py312,py313,check-manifest,checkreadme
33
setenv = LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8
44

55
[testenv]

0 commit comments

Comments
 (0)