From 39a4b3f6c7b15bde074d68023cf5fe1901d40996 Mon Sep 17 00:00:00 2001 From: Anil Belur Date: Tue, 30 May 2023 17:21:44 +1000 Subject: [PATCH] Fix: tox config error This requires pining urllib3<2.0.0 in tox.ini Change-Id: I7e46ff3ad376f42ee075391ce5b7322896e0b946 Signed-off-by: Anil Belur --- tox.ini | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index e8cc560..a041612 100644 --- a/tox.ini +++ b/tox.ini @@ -37,11 +37,11 @@ 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 @@ -50,5 +50,6 @@ 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 -- 2.16.6