From: Matthew Watkins Date: Wed, 4 Mar 2026 17:49:00 +0000 (+0000) Subject: Fix: Set basepython to python3.13 in docs/tox.ini X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=196e04aa2d5e35939374f98ba84d3a6e3b959a59;p=cps.git Fix: Set basepython to python3.13 in docs/tox.ini 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 --- diff --git a/docs/tox.ini b/docs/tox.ini index a1c89916ac..1dd294542e 100644 --- a/docs/tox.ini +++ b/docs/tox.ini @@ -21,19 +21,19 @@ minversion = 1.6 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 =