From 131089020214ee333453548430470a96f075d9e6 Mon Sep 17 00:00:00 2001 From: Anil Belur Date: Wed, 21 Jun 2023 22:12:59 +1000 Subject: [PATCH] Fix: Pin urllib3 and add allowlist_externals - Pin urllib3 in the tox dependencies - allowlist_externals for echo Issue-id: https://jira.linuxfoundation.org/browse/IT-25550 Change-Id: Id6a42faf0af153439a676844d5a084b7ce13c2d7 Signed-off-by: Anil Belur --- tox.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index e3e84237a..89cc65ff0 100644 --- a/tox.ini +++ b/tox.ini @@ -14,11 +14,12 @@ deps = sphinxcontrib-httpdomain recommonmark lfdocs-conf + urllib3~=1.26.15 +allowlist_externals = echo commands = sphinx-build -W -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html echo "Generated docs available in {toxinidir}/docs/_build/html" -whitelist_externals = echo [testenv:docs-linkcheck] basepython = python3 @@ -27,6 +28,7 @@ deps = sphinx sphinxcontrib-httpdomain recommonmark lfdocs-conf + urllib3~=1.26.15 commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck [testenv:clm] -- 2.16.6