Skip to content

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
- Added support for Python 3.14. ([#1927](https://github.com/heroku/heroku-buildpack-python/pull/1927))
66
- The Python 3.13 version alias now resolves to Python 3.13.8. ([#1928](https://github.com/heroku/heroku-buildpack-python/pull/1928))
7+
- The Python 3.12 version alias now resolves to Python 3.12.12. ([#1929](https://github.com/heroku/heroku-buildpack-python/pull/1929))
8+
- The Python 3.11 version alias now resolves to Python 3.11.14. ([#1929](https://github.com/heroku/heroku-buildpack-python/pull/1929))
9+
- The Python 3.10 version alias now resolves to Python 3.10.19. ([#1929](https://github.com/heroku/heroku-buildpack-python/pull/1929))
10+
- The Python 3.9 version alias now resolves to Python 3.9.24. ([#1929](https://github.com/heroku/heroku-buildpack-python/pull/1929))
711
- Stopped using `--with-system-expat` when compiling new Python versions. ([#1925](https://github.com/heroku/heroku-buildpack-python/pull/1925))
812

913
## [v312] - 2025-10-05

lib/python_version.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
# however, it helps Shellcheck realise the options under which these functions will run.
55
set -euo pipefail
66

7-
LATEST_PYTHON_3_9="3.9.23"
8-
LATEST_PYTHON_3_10="3.10.18"
9-
LATEST_PYTHON_3_11="3.11.13"
10-
LATEST_PYTHON_3_12="3.12.11"
7+
LATEST_PYTHON_3_9="3.9.24"
8+
LATEST_PYTHON_3_10="3.10.19"
9+
LATEST_PYTHON_3_11="3.11.14"
10+
LATEST_PYTHON_3_12="3.12.12"
1111
LATEST_PYTHON_3_13="3.13.8"
1212
LATEST_PYTHON_3_14="3.14.0"
1313

spec/spec_helper.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010

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

13-
LATEST_PYTHON_3_9 = '3.9.23'
14-
LATEST_PYTHON_3_10 = '3.10.18'
15-
LATEST_PYTHON_3_11 = '3.11.13'
16-
LATEST_PYTHON_3_12 = '3.12.11'
13+
LATEST_PYTHON_3_9 = '3.9.24'
14+
LATEST_PYTHON_3_10 = '3.10.19'
15+
LATEST_PYTHON_3_11 = '3.11.14'
16+
LATEST_PYTHON_3_12 = '3.12.12'
1717
LATEST_PYTHON_3_13 = '3.13.8'
1818
LATEST_PYTHON_3_14 = '3.14.0'
1919
DEFAULT_PYTHON_FULL_VERSION = LATEST_PYTHON_3_13

0 commit comments

Comments
 (0)