From a545b6eda040ee40b5c36533d7ae378fc24fcf09 Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Wed, 26 May 2021 15:27:27 +0200 Subject: [PATCH] ci: downgrade sphinx to v3.x Sphinx 4.0 was recently released, but sadly the theme we're using is not yet compatible with Sphinx 4.0. So let's limit the sphinx-version we're using to a version before Sphinx 4.0 for now. Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/4843 Reviewed-by: Hoe Hao Cheng Part-of: --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f221cce8090..bb74311fb7e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -92,7 +92,7 @@ stages: - .ci-run-policy script: - apk --no-cache add graphviz - - pip3 install sphinx sphinx_rtd_theme + - pip3 install "sphinx<4.0" sphinx_rtd_theme - sphinx-build -W -b html docs public pages: