From 98f61116068b0fa73a3eb5c05f0670723ecd887d Mon Sep 17 00:00:00 2001 From: Yatin Karel Date: Mon, 2 Mar 2026 14:20:18 +0530 Subject: [PATCH] Honor PYTHON3_VERSION while venv prepare Currently PYTHON3_VERSION was not honored while preparing venv, this patch fixes it. Change-Id: I3f9db8cfa38572cdc80d4973ed3b5908335ef6e8 Signed-off-by: Yatin Karel --- stackrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stackrc b/stackrc index 93f8b1cd6d..a16080600b 100644 --- a/stackrc +++ b/stackrc @@ -133,7 +133,7 @@ export PYTHON3_VERSION=${PYTHON3_VERSION:-${_DEFAULT_PYTHON3_VERSION:-3}} # Create a virtualenv with this # Use the built-in venv to avoid more dependencies -export VIRTUALENV_CMD="python3 -m venv" +export VIRTUALENV_CMD="python$PYTHON3_VERSION -m venv" # Default for log coloring is based on interactive-or-not. # Baseline assumption is that non-interactive invocations are for CI,