Skip to content

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
- The Python 3.13 version alias now resolves to Python 3.13.2. ([#1744](https://github.com/heroku/heroku-buildpack-python/pull/1744))
6+
- The Python 3.12 version alias now resolves to Python 3.12.9. ([#1744](https://github.com/heroku/heroku-buildpack-python/pull/1744))
57
- Deprecated support for the `runtime.txt` file. ([#1743](https://github.com/heroku/heroku-buildpack-python/pull/1743))
68
- 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))
79

lib/python_version.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ set -euo pipefail
77
LATEST_PYTHON_3_9="3.9.21"
88
LATEST_PYTHON_3_10="3.10.16"
99
LATEST_PYTHON_3_11="3.11.11"
10-
LATEST_PYTHON_3_12="3.12.8"
11-
LATEST_PYTHON_3_13="3.13.1"
10+
LATEST_PYTHON_3_12="3.12.9"
11+
LATEST_PYTHON_3_13="3.13.2"
1212

1313
OLDEST_SUPPORTED_PYTHON_3_MINOR_VERSION=9
1414
NEWEST_SUPPORTED_PYTHON_3_MINOR_VERSION=13

spec/spec_helper.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
LATEST_PYTHON_3_9 = '3.9.21'
1313
LATEST_PYTHON_3_10 = '3.10.16'
1414
LATEST_PYTHON_3_11 = '3.11.11'
15-
LATEST_PYTHON_3_12 = '3.12.8'
16-
LATEST_PYTHON_3_13 = '3.13.1'
15+
LATEST_PYTHON_3_12 = '3.12.9'
16+
LATEST_PYTHON_3_13 = '3.13.2'
1717
DEFAULT_PYTHON_FULL_VERSION = LATEST_PYTHON_3_13
1818
DEFAULT_PYTHON_MAJOR_VERSION = DEFAULT_PYTHON_FULL_VERSION.gsub(/\.\d+$/, '')
1919

0 commit comments

Comments
 (0)