From 775ac7f3141328be7cc15e0c3ae8d58c6af968e4 Mon Sep 17 00:00:00 2001 From: Jacob Walls Date: Sun, 8 Dec 2024 08:46:44 -0500 Subject: [PATCH] [skip ci] Add python 3.13 to tox configuration --- .../contributor_guide/tests/launching_test.rst | 2 +- tox.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/development_guide/contributor_guide/tests/launching_test.rst b/doc/development_guide/contributor_guide/tests/launching_test.rst index 48c3a0649b..7eb2abdcd7 100644 --- a/doc/development_guide/contributor_guide/tests/launching_test.rst +++ b/doc/development_guide/contributor_guide/tests/launching_test.rst @@ -30,7 +30,7 @@ tox You can also *optionally* install tox_ and run our tests using the tox_ package, as in:: python -m tox - python -m tox -epy312 # for Python 3.12 suite only + python -m tox -epy313 # for Python 3.13 suite only python -m tox -epylint # for running Pylint over Pylint's codebase python -m tox -eformatting # for running formatting checks over Pylint's codebase diff --git a/tox.ini b/tox.ini index e44d81759f..b5730ea9e3 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 3.0 -envlist = formatting, py39, py310, py311, py312, pypy, benchmark +envlist = formatting, py39, py310, py311, py312, py313, pypy, benchmark skip_missing_interpreters = true requires = pip >=21.3.1 isolated_build = true