From 62e20578844ae64a5d45169c0e242eadb8146e12 Mon Sep 17 00:00:00 2001 From: Dave Shawley Date: Fri, 28 Jul 2023 07:36:09 -0400 Subject: [PATCH] Update tox.ini to work with 3.11 as a base Tornado 5 does not work under Python 3.11 so we need an explicit base python version. --- tox.ini | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tox.ini b/tox.ini index 42a2619..1dfcac4 100644 --- a/tox.ini +++ b/tox.ini @@ -14,6 +14,8 @@ commands = yapf -dr sprockets_statsd tests setup.py docs/conf.py [testenv:distcheck] +allowlist_externals = + rm deps = twine wheel @@ -25,6 +27,7 @@ commands = rm -fr {envtmpdir}/dist [testenv:tornado5] +base_python = py39 deps = tornado>=5,<6 .[dev]