diff options
author | 2021-10-22 10:24:01 +0200 | |
---|---|---|
committer | 2021-10-22 10:25:20 +0200 | |
commit | 558001d751194692cdfc582daf6f916df3a45df6 (patch) | |
tree | 38c41f57b11517edaacb565790791bc5f07b5838 /docs/tox.ini | |
parent | 0c863bee5a0b836059735adc3dde8e40c8a78ea3 (diff) |
Leverage upper-constraints files to pin all dependencies
It leverages the latest change from lfdocs-conf and the
upper-constraints.txt now centralized in ONAP docs.
In a long run, upperconstraints.os.txt should be removed once ONAP
is synced with OpenStack.
It removes tox and setuptools from requirements as nothing depends on them
(most requirements should be removed except lfdocsconf)
Issue-ID: DOC-765
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Change-Id: I50229191f3a7bc42725f038f9b60eda724d4d4fc
(cherry picked from commit 09051f14f1b18de1ed674e30ad0d7d6956a8f0c3)
Diffstat (limited to 'docs/tox.ini')
-rw-r--r-- | docs/tox.ini | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/tox.ini b/docs/tox.ini index edac8c35..bf9bc51f 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?h=istanbul + -chttps://git.onap.org/doc/plain/etc/upper-constraints.onap.txt?h=istanbul commands = sphinx-build -b html -n -d {envtmpdir}/doctrees ./ {toxinidir}/_build/html echo "Generated docs available in {toxinidir}/_build/html" |