From 469dae8c88a9bb770ea1d2611d2845849eb0731c Mon Sep 17 00:00:00 2001 From: Stephan Koglin-Fischer <81704844+skf-funzt@users.noreply.github.com> Date: Fri, 16 Jun 2023 15:18:23 +0200 Subject: [PATCH] fix(linux): installer script prints maximum python version usable --- installer/install.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/install.sh.in b/installer/install.sh.in index c1014b2496b..74aa0928734 100755 --- a/installer/install.sh.in +++ b/installer/install.sh.in @@ -25,7 +25,7 @@ done if [ -z "$PYTHON" ]; then echo "A suitable Python interpreter could not be found" - echo "Please install Python 3.9 or higher before running this script. See instructions at $INSTRUCTIONS for help." + echo "Please install Python $MINIMUM_PYTHON_VERSION or higher (maximum $MAXIMUM_PYTHON_VERSION) before running this script. See instructions at $INSTRUCTIONS for help." read -p "Press any key to exit" exit -1 fi