From ba55cc2a6743d673a8983339522668a0cf525f2f Mon Sep 17 00:00:00 2001 From: Flavio Fernandes Date: Tue, 11 May 2021 17:55:24 -0400 Subject: [PATCH] Fix docs job Sphinx 4.0.0 added a new dependency [0] which is causing the job to fail at the moment. This patch fix the problem by adding UC to the docs jobs. [0] https://www.sphinx-doc.org/en/master/changes.html (LaTeX: add tex-gyre font dependency) Change-Id: I501659d48b1cf2d64cea8dc80ade7a068e37e904 Signed-off-by: Flavio Fernandes --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index 38e90dd8..602ee965 100644 --- a/tox.ini +++ b/tox.ini @@ -30,6 +30,7 @@ commands = python setup.py test --coverage --testr-args='{posargs}' [testenv:docs] deps = + -c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/xena} -r{toxinidir}/doc/requirements.txt commands = sphinx-build -W -b html -d doc/build/doctrees doc/source doc/build/html