Skip to content

Commit

Permalink
Upgrade Pythons. (#2612)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsirois authored Dec 4, 2024
1 parent 0e9d1a2 commit 50d84a9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions docker/base/install_pythons.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions pex/interpreter_constraints.py
Original file line number Diff line number Diff line change
Expand Up @@ -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),
)

Expand Down

0 comments on commit 50d84a9

Please sign in to comment.