From 15c114d54cc0a5d52dc2418c134b8fa31040d07a Mon Sep 17 00:00:00 2001 From: tushargite96 Date: Wed, 20 Jan 2021 13:21:44 +0530 Subject: [PATCH] Changed minversion in tox to 3.18.0 The patch bumps min version of tox to 3.18.0 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: Ic7c30f00f6bd4fb5d49df9edc23873ce46e40a3a --- tox.ini | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tox.ini b/tox.ini index c1d2015ee..be084eb9d 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -minversion = 3.1.0 +minversion = 3.18.0 skipsdist = True skip_missing_interpreters = true # python runtimes: https://governance.openstack.org/tc/reference/runtimes/ussuri.html @@ -31,7 +31,7 @@ commands = stestr run {posargs} stestr slowest -whitelist_externals = bash +allowlist_externals = bash find passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY @@ -79,7 +79,7 @@ deps = commands = rm -fr doc/build doc/source/contributor/api/ .autogenerated sphinx-build -W -b html -d doc/build/doctrees doc/source doc/build/html -whitelist_externals = rm +allowlist_externals = rm [testenv:pdf-docs] @@ -87,7 +87,7 @@ deps = {[testenv:docs]deps} commands = {[testenv:docs]commands} sphinx-build -W -b latex doc/source doc/build/pdf make -C doc/build/pdf -whitelist_externals = +allowlist_externals = make [testenv:releasenotes]