tox: Add python3 to allow list, bump tox to 4.x

Signed-off-by: Jussi Kukkonen <jkukkonen@google.com>
This commit is contained in:
Jussi Kukkonen 2023-01-02 11:56:46 +02:00
parent 26e872ad4c
commit 27bf9c61d6
2 changed files with 4 additions and 1 deletions

View file

@ -1,4 +1,4 @@
# The build and tox versions specified here are also used as constraints
# during CI and CD Github workflows
build==0.9.0
tox==3.28.0
tox==4.1.2

View file

@ -27,6 +27,9 @@ deps =
install_command = python3 -m pip install {opts} {packages}
# Workaround https://github.com/tox-dev/tox/issues/2801 (python3 not allowed in Windows)
allowlist_externals = python3
# Develop test env to run tests against securesystemslib's master branch
# Must to be invoked explicitly with, e.g. `tox -e with-sslib-master`
[testenv:with-sslib-master]