-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update the default Python version from 3.12 to 3.13 #299
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Previously if a new app did not specify a Python version (e.g. via a `.python-version` file), then the buildpack would default to the latest Python 3.12 release. Now the buildpack will use the latest Python 3.13 release. Apps that aren't compatible with Python 3.13 will now need to request Python 3.12 explicitly by creating a `.python-version` file containing: `3.12` Note: Unlike in the classic Python buildpack, this change will affect existing apps too, since the CNB does not perform version pinning (due to the UX and app to app consistency issues it causes). Users are strongly advised to never rely on the default version, and instead set an explicit major Python version using a `.python-version` file. See: https://docs.python.org/3.13/whatsnew/3.13.html GUS-W-14846979.
joshwlewis
approved these changes
Dec 6, 2024
Merged
heroku-linguist bot
added a commit
to heroku/cnb-builder-images
that referenced
this pull request
Dec 10, 2024
## heroku/python ### Changed - Updated the default Python version from 3.12 to 3.13. ([#299](heroku/buildpacks-python#299)) - Updated Poetry from 1.8.4 to 1.8.5. ([#300](heroku/buildpacks-python#300))
Default version mentions updated at: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Previously if an app did not specify a Python version (e.g. via a
.python-version
file), then the buildpack would default to the latest Python 3.12 release.Now the buildpack will use the latest Python 3.13 release.
Apps that aren't compatible with Python 3.13 will now need to request Python 3.12 explicitly by creating a
.python-version
file containing:3.12
Note: Unlike in the classic Python buildpack, this change will affect existing apps too, since the CNB does not perform version pinning (due to the UX and app to app consistency issues it causes). Users are strongly advised to never rely on the default version, and instead set an explicit major Python version using a
.python-version
file.See:
https://docs.python.org/3.13/whatsnew/3.13.html
GUS-W-14846979.