From 50d84a910584e2a52542ae3037798da257b90468 Mon Sep 17 00:00:00 2001 From: John Sirois Date: Wed, 4 Dec 2024 10:24:22 -0800 Subject: [PATCH] Upgrade Pythons. (#2612) https://discuss.python.org/t/python-3-13-1-3-12-8-3-11-11-3-10-16-and-3-9-21-are-now-available/73214 --- docker/base/install_pythons.sh | 10 +++++----- pex/interpreter_constraints.py | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/docker/base/install_pythons.sh b/docker/base/install_pythons.sh index d6f35ab38..dd76a4ec9 100755 --- a/docker/base/install_pythons.sh +++ b/docker/base/install_pythons.sh @@ -8,16 +8,16 @@ export PYENV_ROOT=/pyenv # N.B.: The 1st listed version will supply the default `python` on the PATH; otherwise order does # not matter. PYENV_VERSIONS=( - 3.11.10 + 3.11.11 2.7.18 3.5.10 3.6.15 3.7.17 3.8.20 - 3.9.20 - 3.10.15 - 3.12.7 - 3.13.0 + 3.9.21 + 3.10.16 + 3.12.8 + 3.13.1 3.14.0a2 pypy2.7-7.3.17 pypy3.5-7.0.0 diff --git a/pex/interpreter_constraints.py b/pex/interpreter_constraints.py index 2c621a0b0..ad792492b 100644 --- a/pex/interpreter_constraints.py +++ b/pex/interpreter_constraints.py @@ -376,11 +376,11 @@ def iter_compatible_versions( PythonVersion(Lifecycle.EOL, 3, 6, 15), PythonVersion(Lifecycle.EOL, 3, 7, 17), PythonVersion(Lifecycle.EOL, 3, 8, 20), - PythonVersion(Lifecycle.STABLE, 3, 9, 20), - PythonVersion(Lifecycle.STABLE, 3, 10, 15), - PythonVersion(Lifecycle.STABLE, 3, 11, 10), - PythonVersion(Lifecycle.STABLE, 3, 12, 7), - PythonVersion(Lifecycle.STABLE, 3, 13, 0), + PythonVersion(Lifecycle.STABLE, 3, 9, 21), + PythonVersion(Lifecycle.STABLE, 3, 10, 16), + PythonVersion(Lifecycle.STABLE, 3, 11, 11), + PythonVersion(Lifecycle.STABLE, 3, 12, 8), + PythonVersion(Lifecycle.STABLE, 3, 13, 1), PythonVersion(Lifecycle.DEV, 3, 14, 0), )