Skip to content

Commit a762993

Browse files
authored
Fix breaking build due to new tox (#983)
Version 4 of Tox is currently breaking the build. Therefore, until those issues are fixed, this change can revert to Tox 3.x. Signed-off-by: Eric Brown <[email protected]>
1 parent 91c4d97 commit a762993

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tox.ini

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
[tox]
2-
minversion = 2.0
2+
minversion = 3.2.0
33
envlist = py37,pep8
44
skipsdist = True
5+
requires =
6+
tox<4
57

68
[testenv]
79
usedevelop = True
@@ -14,7 +16,7 @@ deps =
1416
commands =
1517
find bandit -type f -name "*.pyc" -delete
1618
stestr run {posargs}
17-
whitelist_externals =
19+
allowlist_externals =
1820
find
1921
passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY
2022

0 commit comments

Comments
 (0)