Skip to content

Commit 78a8e29

Browse files
committed
Enable testing for python 3.12 and 3.13
1 parent acbf673 commit 78a8e29

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/static-analysis-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
strategy:
5050
matrix:
5151
os: ['ubuntu-latest', 'windows-latest']
52-
python: ['3.8', '3.9', '3.10', '3.11']
52+
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
5353
# Works around the depreciation of python 3.7 for ubuntu
5454
# https://github.com/actions/setup-python/issues/544
5555
include:

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = begin,py{37,38,39,310,311},end,black,flake8,deptry
2+
envlist = begin,py{37,38,39,310,311,312,313},end,black,flake8,deptry
33
skip_missing_interpreters = True
44

55
[testenv]
@@ -24,14 +24,14 @@ deps =
2424
commands =
2525
coverage erase
2626

27-
[testenv:py{37,38,39,310,311}]
27+
[testenv:py{37,38,39,310,311,312,313}]
2828
depends = begin
2929

3030
[testenv:end]
3131
basepython = python3
3232
depends =
3333
begin
34-
py{37,38,39,310,311}
34+
py{37,38,39,310,311,312,313}
3535
parallel_show_output = True
3636
deps =
3737
coverage

0 commit comments

Comments
 (0)