Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade Pythons. #2612

Merged
merged 1 commit into from
Dec 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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