Skip to content

Commit

Permalink
Modernized python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
wolph committed Sep 23, 2024
1 parent c988ae3 commit 74cbe86
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
timeout-minutes: 4
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']

steps:
- uses: actions/checkout@v3
Expand Down
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
[tox]
envlist = ruff, black, py38, py39, py310, py311, flake8, docs, mypy, pyright
envlist = ruff, black, py39, py310, py311, py312, py313, flake8, docs, mypy, pyright
skip_missing_interpreters = True

[testenv]
basepython =
py38: python3.8
py39: python3.9
py310: python3.10
py311: python3.11
py312: python3.12
py313: python3.13

setenv = PY_IGNORE_IMPORTMISMATCH=1
deps =
Expand Down

0 comments on commit 74cbe86

Please sign in to comment.