Skip to content

Commit

Permalink
Merge pull request #189 from aragilar/add-py313
Browse files Browse the repository at this point in the history
Add python 3.13 to tests/CI
  • Loading branch information
aragilar authored Dec 8, 2024
2 parents 5c9ff97 + a0bcc70 commit 34641c8
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 5 deletions.
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

0 comments on commit 34641c8

Please sign in to comment.