Skip to content

Commit

Permalink
[common] Force virtualenv creation with python3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
goldyfruit committed Nov 22, 2023
1 parent d747792 commit 23ddece
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ function required_packages() {
function create_python_venv() {
echo -ne "➤ Creating installer Python virtualenv... "
if [ ! -d "$VENV_PATH" ]; then
python3 -m venv "$VENV_PATH" &>>"$LOG_FILE"
python3.11 -m venv "$VENV_PATH" &>>"$LOG_FILE"
fi

# shellcheck source=/dev/null
Expand Down

0 comments on commit 23ddece

Please sign in to comment.