From 62e4ec000102257cb9c0c2c384f0fc7853b197fe Mon Sep 17 00:00:00 2001 From: Ivan Date: Mon, 13 Apr 2026 14:32:10 -0500 Subject: [PATCH] fix(setup): update default Python version in setup script to 3.14 --- scripts/ci/setup-python.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/ci/setup-python.sh b/scripts/ci/setup-python.sh index 92d3ad6..64f5e09 100755 --- a/scripts/ci/setup-python.sh +++ b/scripts/ci/setup-python.sh @@ -3,12 +3,12 @@ # Source: https://www.python.org # # Usage: setup-python.sh [version] -# version: exact (3.13.9) or minor (3.13, resolved to latest patch). +# version: exact (3.14.x) or minor (3.14, resolved to latest patch). set -eu . "$(dirname "$0")/priv.sh" -PY_INPUT="${1:-3.13}" +PY_INPUT="${1:-3.14}" CURRENT="$(python3 --version 2>/dev/null | sed 's/Python //')" || true