Fix: Set basepython to python3.13 in docs/tox.ini 93/143493/1
authorMatthew Watkins <mwatkins@linuxfoundation.org>
Wed, 4 Mar 2026 17:49:00 +0000 (17:49 +0000)
committerMatthew Watkins <mwatkins@linuxfoundation.org>
Wed, 4 Mar 2026 17:49:00 +0000 (17:49 +0000)
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>
docs/tox.ini

index a1c8991..1dd2945 100644 (file)
@@ -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 =