Skip to content

Commit 74cbe86

Browse files
committed
Modernized python versions
1 parent c988ae3 commit 74cbe86

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
timeout-minutes: 4
1212
strategy:
1313
matrix:
14-
python-version: ['3.8', '3.9', '3.10', '3.11']
14+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
1515

1616
steps:
1717
- uses: actions/checkout@v3

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
[tox]
2-
envlist = ruff, black, py38, py39, py310, py311, flake8, docs, mypy, pyright
2+
envlist = ruff, black, py39, py310, py311, py312, py313, flake8, docs, mypy, pyright
33
skip_missing_interpreters = True
44

55
[testenv]
66
basepython =
7-
py38: python3.8
87
py39: python3.9
98
py310: python3.10
109
py311: python3.11
10+
py312: python3.12
11+
py313: python3.13
1112

1213
setenv = PY_IGNORE_IMPORTMISMATCH=1
1314
deps =

0 commit comments

Comments
 (0)