From 639df077b67c3f1dc1df111243bf0e67c7f88edb Mon Sep 17 00:00:00 2001 From: Anil Belur Date: Tue, 30 May 2023 17:31:04 +1000 Subject: [PATCH] Fix: tox config error Pin urllib3<2.0.0 breaks dependencies with the latest release Change-Id: If2ca0d08052fb093eb486cce7393bfc1e46ee362 Signed-off-by: Anil Belur --- tox.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index c86cfdf..fb0dba6 100644 --- a/tox.ini +++ b/tox.ini @@ -14,7 +14,8 @@ 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" @@ -27,4 +28,5 @@ 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