Pinning basepython prevents CI from picking up unexpected Python
versions (e.g. 3.14) which break sphinxcontrib-needs and other
dependencies that have not yet been updated.
Issue-ID: CIMAN-33
Change-Id: I8f229c34556933c0f4f435640fd872e0c8727e4a
Signed-off-by: Matthew Watkins <mwatkins@linuxfoundation.org>
envlist = docs,docs-linkcheck,docs-spellcheck
skipsdist = true
[testenv:docs]
-basepython = python3
+basepython = python3.13
deps =
-r{toxinidir}/requirements-docs.txt
commands =
sphinx-build -W -q -b html -n -d {envtmpdir}/doctrees {toxinidir} {toxinidir}/_build/html
[testenv:docs-linkcheck]
-basepython = python3
+basepython = python3.13
deps =
-r{toxinidir}/requirements-docs.txt
commands =
sphinx-build -W -q -b linkcheck -d {envtmpdir}/doctrees {toxinidir} {toxinidir}/_build/linkcheck
[testenv:docs-spellcheck]
-basepython = python3
+basepython = python3.13
deps =
-r{toxinidir}/requirements-docs.txt
commands =