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 <ykarel@redhat.com>
This commit is contained in:
2
stackrc
2
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,
|
||||
|
||||
Reference in New Issue
Block a user