diff options
author | thmsdt <thomas.kulik@telekom.de> | 2024-02-20 14:01:09 +0100 |
---|---|---|
committer | Jessica Wagantall <jwagantall@linuxfoundation.org> | 2024-02-20 16:48:15 -0800 |
commit | 09ff8eeb3386061c888cea33a58f52a49ada3fd3 (patch) | |
tree | 3e88573c114ff8dc78baa3d09025195d8538d59e | |
parent | 9fae20075b2ad8dceed5995af2e83d8cc78f4666 (diff) |
add python compatibility module
Issue-ID: DOC-823
Change-Id: I8c4f268de3a84a354a4e75b30e5360c772106346
Signed-off-by: thmsdt <thomas.kulik@telekom.de>
-rw-r--r-- | docs/requirements-docs.txt | 1 | ||||
-rw-r--r-- | docs/tox.ini | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/docs/requirements-docs.txt b/docs/requirements-docs.txt index 71df2ab0..097282b9 100644 --- a/docs/requirements-docs.txt +++ b/docs/requirements-docs.txt @@ -5,3 +5,4 @@ sphinxcontrib-seqdiag # BSD sphinxcontrib-swaggerdoc sphinxcontrib-spelling sphinxcontrib-plantuml +six diff --git a/docs/tox.ini b/docs/tox.ini index 4bbc6403..343a4d2a 100644 --- a/docs/tox.ini +++ b/docs/tox.ini @@ -12,8 +12,8 @@ deps = commands = sphinx-build -b html -n -d {envtmpdir}/doctrees ./ {toxinidir}/_build/html echo "Generated docs available in {toxinidir}/_build/html" +allowlist_externals = echo whitelist_externals = - echo git sh @@ -22,7 +22,7 @@ basepython = python3.8 #deps = -r{toxinidir}/requirements-docs.txt commands = echo "Link Checking not enforced" #commands = sphinx-build -b linkcheck -d {envtmpdir}/doctrees ./ {toxinidir}/_build/linkcheck -whitelist_externals = echo +allowlist_externals = echo [testenv:docs-spellcheck] basepython = python3.8 |