diff options
author | William Reehil <william.reehil@att.com> | 2021-10-28 14:15:36 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-10-28 14:15:36 +0000 |
commit | ef1f7872f16ca067ccb4d74eb4ed8d773b5aab9d (patch) | |
tree | 1be97a8bf24b30947129d02769bb8bc1ac6ccc30 /docs | |
parent | a49ef9fe705e5b076436f0a0fc1a6ea0a099fb51 (diff) | |
parent | 27ea9f88c408b1b73aab0028f05ba6742247ca90 (diff) |
Merge "Leverage upper-constraints files to pin all dependencies"
Diffstat (limited to 'docs')
-rw-r--r-- | docs/conf.py | 2 | ||||
-rw-r--r-- | docs/requirements-docs.txt | 14 | ||||
-rw-r--r-- | docs/tox.ini | 5 |
3 files changed, 5 insertions, 16 deletions
diff --git a/docs/conf.py b/docs/conf.py index 5371015c..d211470a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -12,4 +12,4 @@ intersphinx_mapping = {} html_last_updated_fmt = '%d-%b-%y %H:%M' def setup(app): - app.add_stylesheet("css/ribbon.css") + app.add_css_file("css/ribbon.css") diff --git a/docs/requirements-docs.txt b/docs/requirements-docs.txt index b3188ddd..74a3b7a3 100644 --- a/docs/requirements-docs.txt +++ b/docs/requirements-docs.txt @@ -1,15 +1 @@ -tox -Sphinx -doc8 -docutils -setuptools -six -sphinx_rtd_theme>=0.4.3 -sphinxcontrib-blockdiag -sphinxcontrib-needs>=0.2.3 -sphinxcontrib-nwdiag -sphinxcontrib-seqdiag -sphinxcontrib-swaggerdoc -sphinxcontrib-plantuml -sphinx_bootstrap_theme lfdocs-conf diff --git a/docs/tox.ini b/docs/tox.ini index edac8c35..42ffa687 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" |