Skip to content

Commit

Permalink
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

- The Python 3.13 version alias now resolves to Python 3.13.2. ([#1744](https://github.com/heroku/heroku-buildpack-python/pull/1744))
- The Python 3.12 version alias now resolves to Python 3.12.9. ([#1744](https://github.com/heroku/heroku-buildpack-python/pull/1744))
- Deprecated support for the `runtime.txt` file. ([#1743](https://github.com/heroku/heroku-buildpack-python/pull/1743))
- Improved the error messages shown when `.python-version`, `runtime.txt` or `Pipfile.lock` contain an invalid Python version. ([#1743](https://github.com/heroku/heroku-buildpack-python/pull/1743))

Expand Down
4 changes: 2 additions & 2 deletions lib/python_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ set -euo pipefail
LATEST_PYTHON_3_9="3.9.21"
LATEST_PYTHON_3_10="3.10.16"
LATEST_PYTHON_3_11="3.11.11"
LATEST_PYTHON_3_12="3.12.8"
LATEST_PYTHON_3_13="3.13.1"
LATEST_PYTHON_3_12="3.12.9"
LATEST_PYTHON_3_13="3.13.2"

OLDEST_SUPPORTED_PYTHON_3_MINOR_VERSION=9
NEWEST_SUPPORTED_PYTHON_3_MINOR_VERSION=13
Expand Down
4 changes: 2 additions & 2 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
LATEST_PYTHON_3_9 = '3.9.21'
LATEST_PYTHON_3_10 = '3.10.16'
LATEST_PYTHON_3_11 = '3.11.11'
LATEST_PYTHON_3_12 = '3.12.8'
LATEST_PYTHON_3_13 = '3.13.1'
LATEST_PYTHON_3_12 = '3.12.9'
LATEST_PYTHON_3_13 = '3.13.2'
DEFAULT_PYTHON_FULL_VERSION = LATEST_PYTHON_3_13
DEFAULT_PYTHON_MAJOR_VERSION = DEFAULT_PYTHON_FULL_VERSION.gsub(/\.\d+$/, '')

Expand Down

0 comments on commit 7531824

Please sign in to comment.