From e0dbd289539ef94f3947ff106468bcecb740e57b Mon Sep 17 00:00:00 2001 From: rusefillc Date: Mon, 16 May 2022 16:26:28 -0400 Subject: [PATCH] 3.5 or 3.8? #157 --- bin/check_all.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/check_all.sh b/bin/check_all.sh index c585d45..e3c3931 100755 --- a/bin/check_all.sh +++ b/bin/check_all.sh @@ -114,8 +114,8 @@ echo "Checking the Python version..." python_bin="python3.8" while true; do python_ver=$($python_bin -V 2>&1 | grep -Po '(?<=Python )(.+)') - if [[ -z "$python_ver" ]] || [[ ! $python_ver =~ ^3\.[56789].* ]] ; then - echo "Error! Python 3.5 or later is required. It should be installed and added to the PATH!" + if [[ -z "$python_ver" ]] || [[ ! $python_ver =~ ^3\.[89].* ]] ; then + echo "Error! Python 3.8 or later is required. It should be installed and added to the PATH!" while true; do if ! [ -x "$(command -v wget)" ] ; then echo "Warning! wget is not installed. Using wget is preferred for installing other packages"