From 565b195415c4be214245199826e75b39d352ff7e Mon Sep 17 00:00:00 2001 From: Manpreet Kaur Date: Mon, 10 May 2021 16:44:43 +0530 Subject: [PATCH] Update min version of tox This patch bumps the minimum version of tox to 3.18.0 [1]. Additionally fix the argument such as "whitelist_externals" which is deprecated, it replaces whitelist_externals by allowlist_externals option [1]. [1] https://github.com/tox-dev/tox/blob/master/docs/changelog.rst#v3180-2020-07-23 Change-Id: I80b180a433636d1ac70546535f1d3762f828cb13 --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index b9fe582d..a415b7d0 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -minversion = 2.0 +minversion = 3.18.0 envlist = pep8,docs skipsdist = True @@ -16,7 +16,7 @@ commands = {posargs} [testenv:docs] deps = -r{toxinidir}/doc/requirements.txt -whitelist_externals = rm +allowlist_externals = rm commands = rm -fr doc/build sphinx-build -W -b html doc/source doc/build/html