From d1123df20f8e6006a68a716cd2540534a117c468 Mon Sep 17 00:00:00 2001 From: Kush Zingade Date: Tue, 25 Aug 2026 01:53:59 +0800 Subject: [PATCH] tox: stop py3-unit re-pinning to Python 3.11 unit.yaml runs tox -e py3-unit across a matrix.python of 3.11/3.12/3.13, but [testenv:py3-unit] pinned basepython to python3.11, silently re-pinning every leg back to 3.11 regardless of what setup-python installed. Removing the pin lets py3-unit use whatever interpreter is already on PATH for that job, so the three CI legs actually diverge. py3-smoke keeps its own basepython pin unchanged. Ref: https://github.com/instructlab/training/issues/705 Co-Authored-By: Claude Fable 5 Signed-off-by: Kush Zingade --- tox.ini | 1 - 1 file changed, 1 deletion(-) diff --git a/tox.ini b/tox.ini index 47a2a140..ad31800b 100644 --- a/tox.ini +++ b/tox.ini @@ -29,7 +29,6 @@ basepython = python3.11 [testenv:py3-unit] description = run unit tests with pytest -basepython = python3.11 passenv = PATH HF_HOME