From 26ec628ed3d8e32f2e623adb13d4ecbdb4c227ef Mon Sep 17 00:00:00 2001 From: Frank Brehm Date: Thu, 17 Aug 2023 13:59:32 +0200 Subject: [PATCH] Increasing possible Python version in bin/update-env.sh --- bin/update-env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/update-env.sh b/bin/update-env.sh index 5cacb0a..c46eed3 100755 --- a/bin/update-env.sh +++ b/bin/update-env.sh @@ -22,7 +22,7 @@ BASE_DIR=$( dirname "$( dirname "$0" )" ) cd "${BASE_DIR}" BASE_DIR=$( readlink -f . ) -declare -a VALID_PY_VERSIONS=("3.9" "3.8" "3.7" "3.6") +declare -a VALID_PY_VERSIONS=("3.10" "3.9" "3.8" "3.7" "3.6") PIP_OPTIONS= export VIRTUAL_ENV_DISABLE_PROMPT=y -- 2.39.5