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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

- Updated uv from 0.10.7 to 0.10.9. ([#2049](https://github.com/heroku/heroku-buildpack-python/pull/2049))
- Switched to downloading uv from `releases.astral.sh` instead of GitHub releases. ([#2050](https://github.com/heroku/heroku-buildpack-python/pull/2050))
- Updated the check for misspelled `.python-version` files with additional misspellings seen in the wild. ([#2051](https://github.com/heroku/heroku-buildpack-python/pull/2051))

## [v338] - 2026-03-03

Expand Down
3 changes: 3 additions & 0 deletions lib/python_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,12 @@ PYTHON_FULL_VERSION_REGEX="${INT_REGEX}\.${INT_REGEX}\.${INT_REGEX}"

# Misspellings of the `.python-version` file seen in the wild.
MISSPELLED_PYTHON_VERSION_FILE_NAMES=(
" .python-version"
". python-version"
".python_version.txt"
".python_version"
".python-version "
",python-version"
".python-version."
".python-version.py"
".python-version.rtf"
Expand Down