From 3245f5e6248e969fb9f92d3c809f76e558beaf70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9sar=20Rom=C3=A1n?= Date: Mon, 7 Oct 2024 10:04:35 -0700 Subject: [PATCH] test(tox): prepare for Python 3.13 (#302) --- tox.ini | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tox.ini b/tox.ini index 45b73b5..3a085c0 100644 --- a/tox.ini +++ b/tox.ini @@ -14,6 +14,7 @@ commands = [testenv:typecheck] description = run type check on code base +base_python = {[type]base_python} skip_install = true deps = {[type]deps} @@ -22,6 +23,7 @@ commands = [testenv:stubgen] description = generate stubs +base_python = {[type]base_python} skip_install = true deps = {[type]deps} @@ -54,5 +56,6 @@ allowlist_externals = bash [type] +base_python = python3.12 deps = mypy[python2]==0.971