From bc501624e22a72e67bc391af4079d2efd868c6eb Mon Sep 17 00:00:00 2001 From: Augustin Cavalier Date: Tue, 7 Apr 2026 13:51:09 -0400 Subject: [PATCH] configure: HDS now needs Python 3.10+. 3.9 is end-of-life as of 2025/10 anyway. --- configure | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure b/configure index 37899eb6ff..7799637344 100755 --- a/configure +++ b/configure @@ -901,12 +901,12 @@ if [ -z "$HOST_PYTHON" ]; then fi # check is python is new enough -# usage of python by HDS requires at least 3.9 +# usage of python by HDS requires at least 3.10 PYTHON_VERSION=$("$HOST_PYTHON" --version 2>&1 | sed -e 's/Python //') case $PYTHON_VERSION in - 2.* | 3.[1-8].*) - echo "Python $PYTHON_VERSION is too old; need at least Python 3.9." + 2.* | 3.[1-9].*) + echo "Python $PYTHON_VERSION is too old; need at least Python 3.10." echo "(maybe specify a newer one in HOST_PYTHON?)" exit 1 ;;