From c212ff55d2e363e7026a80c39987c3532ec189f7 Mon Sep 17 00:00:00 2001 From: Martin Kopec Date: Sat, 9 Jan 2021 15:53:31 +0000 Subject: [PATCH] Inclusive jargon in tox.ini 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: I06bf94861056e06722da839f7c5c8c60be2fc6ee --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 5775335..0a13ad6 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] envlist = pep8,py35,py36,py37,py27 -minversion = 2.0 +minversion = 3.18 skipsdist = True [testenv] @@ -14,7 +14,7 @@ deps = -r{toxinidir}/requirements.txt commands = stestr run {posargs} -whitelist_externals = +allowlist_externals = bash find distribute = false