From 23541b4180b67c8c1e2e0ece8a488c489ad3c8c1 Mon Sep 17 00:00:00 2001 From: "opensearch-trigger-bot[bot]" <98922864+opensearch-trigger-bot[bot]@users.noreply.github.com> Date: Wed, 5 Jun 2024 17:46:39 -0700 Subject: [PATCH] penghuo@gmail.com (cherry picked from commit c90cf00bf7ea98717368c3a82ad209d5cac88aba) Signed-off-by: Peng Huo Signed-off-by: github-actions[bot] Co-authored-by: github-actions[bot] --- 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