From 2af169ac32b42d307693d1348b64318a56a75384 Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Thu, 14 Apr 2022 10:44:17 +0200 Subject: Add bounds to sphinx requirement MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As ONAP was created before Oct 20 2020 in RTD, we must set bounds to enforce a compatible Sphinx version (see manual). It also remove falsy concrete dependencies. Issue-ID: DOC-782 Signed-off-by: Cédric Ollivier Change-Id: Ibc03ee3a10301ba1b30dec1e3b7d2b64087a6f0f --- docs/requirements-docs.txt | 16 ++-------------- docs/tox.ini | 5 ++++- 2 files changed, 6 insertions(+), 15 deletions(-) diff --git a/docs/requirements-docs.txt b/docs/requirements-docs.txt index 9c3391a..3b3441a 100644 --- a/docs/requirements-docs.txt +++ b/docs/requirements-docs.txt @@ -1,15 +1,3 @@ -tox -Sphinx -doc8 -docutils -setuptools -six -sphinx_rtd_theme>=0.4.3 -sphinxcontrib-blockdiag -sphinxcontrib-needs==0.5.6 -sphinxcontrib-nwdiag -sphinxcontrib-seqdiag -sphinxcontrib-swaggerdoc -sphinxcontrib-plantuml -sphinx_bootstrap_theme lfdocs-conf +sphinx>=4.2.0 # BSD +sphinx-rtd-theme>=1.0.0 # MIT diff --git a/docs/tox.ini b/docs/tox.ini index edac8c3..42ffa68 100644 --- a/docs/tox.ini +++ b/docs/tox.ini @@ -5,7 +5,10 @@ skipsdist = true [testenv:docs] basepython = python3 -deps = -r{toxinidir}/requirements-docs.txt +deps = + -r{toxinidir}/requirements-docs.txt + -chttps://git.onap.org/doc/plain/etc/upper-constraints.os.txt + -chttps://git.onap.org/doc/plain/etc/upper-constraints.onap.txt commands = sphinx-build -b html -n -d {envtmpdir}/doctrees ./ {toxinidir}/_build/html echo "Generated docs available in {toxinidir}/_build/html" -- cgit 1.2.3-korg