Skip to content

Commit

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

## [Unreleased]

- The Python 3.13 version alias now resolves to Python 3.13.1. ([#1712](https://github.com/heroku/heroku-buildpack-python/pull/1712))
- The Python 3.12 version alias now resolves to Python 3.12.8. ([#1712](https://github.com/heroku/heroku-buildpack-python/pull/1712))
- The Python 3.11 version alias now resolves to Python 3.11.11. ([#1712](https://github.com/heroku/heroku-buildpack-python/pull/1712))
- The Python 3.10 version alias now resolves to Python 3.10.16. ([#1712](https://github.com/heroku/heroku-buildpack-python/pull/1712))
- The Python 3.9 version alias now resolves to Python 3.9.21. ([#1712](https://github.com/heroku/heroku-buildpack-python/pull/1712))

## [v268] - 2024-12-04

Expand Down
10 changes: 5 additions & 5 deletions lib/python_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
set -euo pipefail

LATEST_PYTHON_3_8="3.8.20"
LATEST_PYTHON_3_9="3.9.20"
LATEST_PYTHON_3_10="3.10.15"
LATEST_PYTHON_3_11="3.11.10"
LATEST_PYTHON_3_12="3.12.7"
LATEST_PYTHON_3_13="3.13.0"
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"

DEFAULT_PYTHON_FULL_VERSION="${LATEST_PYTHON_3_12}"
DEFAULT_PYTHON_MAJOR_VERSION="${DEFAULT_PYTHON_FULL_VERSION%.*}"
Expand Down
10 changes: 5 additions & 5 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
FIXTURE_DIR = Pathname.new(__FILE__).parent.join('fixtures')

LATEST_PYTHON_3_8 = '3.8.20'
LATEST_PYTHON_3_9 = '3.9.20'
LATEST_PYTHON_3_10 = '3.10.15'
LATEST_PYTHON_3_11 = '3.11.10'
LATEST_PYTHON_3_12 = '3.12.7'
LATEST_PYTHON_3_13 = '3.13.0'
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'
DEFAULT_PYTHON_FULL_VERSION = LATEST_PYTHON_3_12
DEFAULT_PYTHON_MAJOR_VERSION = DEFAULT_PYTHON_FULL_VERSION.gsub(/\.\d+$/, '')

Expand Down

0 comments on commit 7ca1718

Please sign in to comment.