From c90cf00bf7ea98717368c3a82ad209d5cac88aba Mon Sep 17 00:00:00 2001 From: Peng Huo Date: Wed, 5 Jun 2024 10:43:00 -0700 Subject: [PATCH] Upgrade python 3.8 (#2711) Signed-off-by: Peng Huo --- doctest/bootstrap.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doctest/bootstrap.sh b/doctest/bootstrap.sh index d50eb50401..d239a358d0 100755 --- a/doctest/bootstrap.sh +++ b/doctest/bootstrap.sh @@ -2,13 +2,13 @@ DIR=$(dirname "$0") -if hash python3.7 2> /dev/null; then - PYTHON=python3.7 +if hash python3.8 2> /dev/null; then + PYTHON=python3.8 elif hash python3 2> /dev/null; then - # fallback to python3 in case there is no python3.7 alias; should be 3.7 + # fallback to python3 in case there is no python3.8 alias; should be 3.8 PYTHON=python3 else - echo 'python3.7 required' + echo 'python3.8 required' exit 1 fi