Skip to content
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## [Unreleased]

- The Python 3.12 version alias now resolves to Python 3.12.13. ([#2046](https://github.com/heroku/heroku-buildpack-python/pull/2046))
- The Python 3.11 version alias now resolves to Python 3.11.15. ([#2046](https://github.com/heroku/heroku-buildpack-python/pull/2046))
- The Python 3.10 version alias now resolves to Python 3.10.20. ([#2046](https://github.com/heroku/heroku-buildpack-python/pull/2046))

## [v337] - 2026-03-03

Expand Down
6 changes: 3 additions & 3 deletions lib/python_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
# however, it helps Shellcheck realise the options under which these functions will run.
set -euo pipefail

LATEST_PYTHON_3_10="3.10.19"
LATEST_PYTHON_3_11="3.11.14"
LATEST_PYTHON_3_12="3.12.12"
LATEST_PYTHON_3_10="3.10.20"
LATEST_PYTHON_3_11="3.11.15"
LATEST_PYTHON_3_12="3.12.13"
LATEST_PYTHON_3_13="3.13.12"
LATEST_PYTHON_3_14="3.14.3"

Expand Down
6 changes: 3 additions & 3 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@

FIXTURE_DIR = Pathname.new(__FILE__).parent.join('fixtures')

LATEST_PYTHON_3_10 = '3.10.19'
LATEST_PYTHON_3_11 = '3.11.14'
LATEST_PYTHON_3_12 = '3.12.12'
LATEST_PYTHON_3_10 = '3.10.20'
LATEST_PYTHON_3_11 = '3.11.15'
LATEST_PYTHON_3_12 = '3.12.13'
LATEST_PYTHON_3_13 = '3.13.12'
LATEST_PYTHON_3_14 = '3.14.3'
DEFAULT_PYTHON_FULL_VERSION = LATEST_PYTHON_3_14
Expand Down