diff options
-rw-r--r-- | .github/workflows/ci.yml | 1 | ||||
-rw-r--r-- | tox.ini | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 698b8dcac..3a897dbee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,6 +16,7 @@ jobs: - '3.10' - '3.11' - '3.12-dev' + - '3.13-dev' - 'pypy-3.10' fail-fast: false steps: @@ -1,5 +1,5 @@ [tox] -envlist = py{39,310,311,312}-{pylint,test},pypy3-test +envlist = py{39,310,311,312,313}-{pylint,test},pypy3-test skipsdist = True [gh-actions] @@ -8,6 +8,7 @@ python = 3.10: py310 3.11: py311 3.12: py312 + 3.13: py313 pypy-3: pypy3 [gh-actions:env] |