Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/test-daepack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ jobs:
tox-env: py311
- python-version: "3.12"
tox-env: py312
- python-version: "3.13"
tox-env: py313

steps:
- uses: actions/checkout@v4
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/test-namespace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ jobs:
tox-env: py312
sundials-precision: double
sundials-index-size: 64
- python-version: "3.13"
sundials-version: "7.1.1"
tox-env: py313
sundials-precision: double
sundials-index-size: 64
- python-version: "3.11"
sundials-version: "7.1.1"
tox-env: check-manifest
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/test-overall.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ jobs:
tox-env: py312-test
sundials-precision: double
sundials-index-size: 64
- python-version: "3.13"
sundials-version: "7.1.1"
tox-env: py313-test
sundials-precision: double
sundials-index-size: 64
- python-version: "3.11"
sundials-version: "7.1.1"
tox-env: apidocs
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/test-sundials.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ jobs:
tox-env: py312
sundials-precision: double
sundials-index-size: 64
- python-version: "3.13"
sundials-version: "7.1.1"
tox-env: py313
sundials-precision: double
sundials-index-size: 64
- python-version: "3.11"
sundials-version: "7.1.1"
tox-env: check-manifest
Expand Down
2 changes: 1 addition & 1 deletion packages/scikits-odes-core/tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py37,py38,py39,py310,py311,py312,check-manifest,checkreadme
envlist = py37,py38,py39,py310,py311,py312,py313,check-manifest,checkreadme
setenv = LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8

[testenv]
Expand Down
2 changes: 1 addition & 1 deletion packages/scikits-odes-daepack/tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py37,py38,py39,py310,py311,py312
envlist = py37,py38,py39,py310,py311,py312,py313
setenv = LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8

[testenv]
Expand Down
2 changes: 1 addition & 1 deletion packages/scikits-odes-sundials/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools", "numpy", "cython<3", "pkgconfig"]
requires = ["setuptools", "numpy", "cython", "pkgconfig"]

[project]
name = 'scikits-odes-sundials'
Expand Down
2 changes: 1 addition & 1 deletion packages/scikits-odes-sundials/tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py37,py38,py39,py310,py311,py312,check-manifest,checkreadme
envlist = py37,py38,py39,py310,py311,py312,py313,check-manifest,checkreadme
setenv = LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8

[testenv]
Expand Down
2 changes: 1 addition & 1 deletion packages/scikits-odes/tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py37,py38,py39,py310,py311,py312,check-manifest,checkreadme
envlist = py37,py38,py39,py310,py311,py312,py313,check-manifest,checkreadme
setenv = LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8

[testenv]
Expand Down
Loading