From 1e0782b6262801321d44c93df0e01383c5a77449 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 18 May 2024 15:05:14 +0200 Subject: [PATCH] Add support for python 3.12 in setup.sh closes #10220 --- setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.sh b/setup.sh index 68374a689..18f7682d8 100755 --- a/setup.sh +++ b/setup.sh @@ -25,7 +25,7 @@ function check_installed_python() { exit 2 fi - for v in 11 10 9 + for v in 12 11 10 9 do PYTHON="python3.${v}" which $PYTHON @@ -277,7 +277,7 @@ function install() { install_redhat else echo "This script does not support your OS." - echo "If you have Python version 3.9 - 3.11, pip, virtualenv, ta-lib you can continue." + echo "If you have Python version 3.9 - 3.12, pip, virtualenv, ta-lib you can continue." echo "Wait 10 seconds to continue the next install steps or use ctrl+c to interrupt this shell." sleep 10 fi