From a1f2375875ddf1bc085284b19eb9cc794d4d9ae4 Mon Sep 17 00:00:00 2001 From: Martin Kopec Date: Sat, 9 Jan 2021 15:26:19 +0000 Subject: [PATCH] Inclusive jargon tox deprecated its whitelist_externals option in 3.18 release. The patch bumps the min version of tox to 3.18 and renames the option from whitelist_externals to allowlist_externals. Change-Id: I12d4bb75839adf78c17e8e562535fbf0d7e2e816 --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 3d4b57e1..7403ca7f 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] envlist = py36,pep8,pip-check-reqs -minversion = 2.0 +minversion = 3.18 skipsdist = True [testenv] @@ -11,7 +11,7 @@ setenv = VIRTUAL_ENV={envdir} LANG=en_US.UTF-8 LANGUAGE=en_US:en LC_ALL=C -whitelist_externals = find +allowlist_externals = find deps = -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements.txt commands =