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.
This commit is contained in:
Dave Shawley 2023-07-28 07:36:09 -04:00
parent 44baf2e025
commit 62e2057884
No known key found for this signature in database
GPG key ID: 44A9C9992CCFAB82

View file

@ -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]