Changed minversion in tox to 3.18.0

The patch bumps min version of tox to 3.18.0 python in order to
replace tox's whitelist_externals by allowlist_externals option:
https://github.com/tox-dev/tox/blob/master/docs/changelog.rst#v3180-2020-07-23

Change-Id: Id3fae9e5e070793f4350f1699fe8617e9aea0b7e
This commit is contained in:
tushargite96 2021-02-25 23:37:30 +05:30
parent 6baebaccf5
commit 8ad78a16df
1 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
[tox]
minversion = 3.1.1
minversion = 3.18.0
envlist = py36,py38,pypy,pep8
# Need to set to False to have CHANGES generated
skipsdist = false
@ -13,7 +13,7 @@ setenv =
OS_STDOUT_CAPTURE=1
OS_STDERR_CAPTURE=1
OS_TEST_TIMEOUT=500
whitelist_externals = find
allowlist_externals = find
deps =
-c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
-r{toxinidir}/requirements.txt
@ -47,7 +47,7 @@ commands =
[testenv:pdf-docs]
deps = {[testenv:docs]deps}
whitelist_externals =
allowlist_externals =
make
commands =
sphinx-build -W -b latex doc/source doc/build/pdf
@ -64,7 +64,7 @@ commands =
rm -rf releasenotes/build
sphinx-build -a -E -W -d releasenotes/build/doctrees \
-b html releasenotes/source releasenotes/build/html
whitelist_externals = rm
allowlist_externals = rm
[flake8]
# E123, E125 skipped as they are invalid PEP-8.