-
-
Notifications
You must be signed in to change notification settings - Fork 9
Python 3.14.5 release candidate #74
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
Merged
+100
−0
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,100 @@ | ||||||
| --- | ||||||
| title: 'Python 3.14.5 release candidate' | ||||||
| publishDate: '2026-05-04' | ||||||
| author: Hugo van Kemenade | ||||||
| description: 'A special release candidate with a new (old) garbage collector.' | ||||||
| tags: | ||||||
| - releases | ||||||
| published: true | ||||||
| --- | ||||||
|
|
||||||
| Python 3.14.5rc1 is a release candidate for the fifth maintenance release of 3.14, containing around 113 bugfixes, build improvements and documentation changes since 3.14.4. | ||||||
|
|
||||||
| https://www.python.org/downloads/release/python-3145rc1/ | ||||||
|
|
||||||
| ## Garbage collector | ||||||
|
|
||||||
| Notably, the garbage collector (GC) has changed in Python 3.14.5rc1. | ||||||
|
|
||||||
| The incremental garbage collector shipped in Python 3.14.0-3.14.4 has been reverted back to the generational garbage collector from 3.13, due to a number of [reports](https://github.com/python/cpython/issues/142516) of significant memory pressure in production environments. See [What's New](https://docs.python.org/3/whatsnew/3.14.html#garbage-collection) and [discuss.python.org](https://discuss.python.org/t/reverting-the-incremental-gc-in-python-3-14-and-3-15/107014) for details. | ||||||
|
|
||||||
| ## Call to action | ||||||
|
|
||||||
| We ***strongly encourage*** testing of this release candidate, ahead of the planned 3.14.5 final on Friday 2026-05-08. | ||||||
| As always, report any issues to [the Python bug tracker](https://github.com/python/cpython/issues). | ||||||
| Please keep in mind that this is a preview release and its use is ***not*** recommended for production environments. | ||||||
|
|
||||||
|
|
||||||
| ## Major new features of the 3.14 series, compared to 3.13 | ||||||
|
|
||||||
| Some of the major new features and changes in Python 3.14 are: | ||||||
|
|
||||||
| ### New features | ||||||
|
|
||||||
| - [PEP 779](https://docs.python.org/3/whatsnew/3.14.html#whatsnew314-free-threaded-now-supported): Free-threaded Python is officially supported | ||||||
| - [PEP 649](https://docs.python.org/3/whatsnew/3.14.html#whatsnew314-deferred-annotations): The evaluation of annotations is now deferred, improving the semantics of using annotations. | ||||||
| - [PEP 750](https://docs.python.org/3/whatsnew/3.14.html#pep-750-template-string-literals): Template string literals (t-strings) for custom string processing, using the familiar syntax of f-strings. | ||||||
| - [PEP 734](https://docs.python.org/3/whatsnew/3.14.html#pep-734-multiple-interpreters-in-the-standard-library): Multiple interpreters in the stdlib. | ||||||
| - [PEP 784](https://docs.python.org/3/whatsnew/3.14.html#pep-784-zstandard-support-in-the-standard-library): A new module `compression.zstd` providing support for the Zstandard compression algorithm. | ||||||
| - [PEP 758](https://docs.python.org/3/whatsnew/3.14.html#pep-758-allow-except-and-except-expressions-without-brackets): `except` and `except*` expressions may now omit the brackets. | ||||||
| - [Syntax highlighting in PyREPL](https://docs.python.org/3/whatsnew/3.14.html#whatsnew314-pyrepl-highlighting), and support for color in [unittest](https://docs.python.org/3/whatsnew/3.14.html#whatsnew314-color-unittest), [argparse](https://docs.python.org/3/whatsnew/3.14.html#whatsnew314-color-argparse), [json](https://docs.python.org/3/whatsnew/3.14.html#whatsnew314-color-json) and [calendar](https://docs.python.org/3/whatsnew/3.14.html#whatsnew314-color-calendar) CLIs. | ||||||
| - [PEP 768](https://docs.python.org/3/whatsnew/3.14.html#pep-768-safe-external-debugger-interface): A zero-overhead external debugger interface for CPython. | ||||||
| - [UUID versions 6-8](https://docs.python.org/3/whatsnew/3.14.html#uuid) are now supported by the `uuid` module, and generation of versions 3-5 are up to 40% faster. | ||||||
| - [PEP 765](https://docs.python.org/3/whatsnew/3.14.html#pep-765-control-flow-in-finally-blocks): Disallow `return`/`break`/`continue` that exit a `finally` block. | ||||||
| - [PEP 741](https://docs.python.org/3/whatsnew/3.14.html#whatsnew314-capi-config): An improved C API for configuring Python. | ||||||
| - A [new type of interpreter](https://docs.python.org/3/whatsnew/3.14.html#whatsnew314-tail-call-interpreter). For certain newer compilers, this interpreter provides significantly better performance. Opt-in for now, requires building from source. | ||||||
| - [Improved error messages.](https://docs.python.org/3/whatsnew/3.14.html#improved-error-messages) | ||||||
| - [Builtin implementation of HMAC](https://docs.python.org/3/whatsnew/3.14.html#hmac) with formally verified code from the HACL* project. | ||||||
| - A [new command-line interface](https://docs.python.org/3/whatsnew/3.14.html#asyncio-introspection-capabilities) to inspect running Python processes using asynchronous tasks. | ||||||
| - The pdb module now supports [remote attaching to a running Python process](https://docs.python.org/3/whatsnew/3.14.html#pdb). | ||||||
|
|
||||||
| For more details on the changes to Python 3.14, see [What’s new in Python 3.14](https://docs.python.org/3/whatsnew/3.14.html). | ||||||
|
|
||||||
|
|
||||||
| ### Build changes | ||||||
|
|
||||||
| - [PEP 761](https://docs.python.org/3/whatsnew/3.14.html#whatsnew314-no-more-pgp): Python 3.14 and onwards no longer provides PGP signatures for release artifacts. Instead, Sigstore is recommended for verifiers. | ||||||
| - Official macOS and Windows release binaries include an [*experimental* JIT compiler](https://docs.python.org/3/whatsnew/3.14.html#whatsnew314-jit-compiler). | ||||||
| - Official [Android binary releases](https://docs.python.org/3/whatsnew/3.14.html#whatsnew314-build-changes) are now available. | ||||||
|
|
||||||
|
|
||||||
| ### Incompatible changes, removals and new deprecations | ||||||
|
|
||||||
| - [Incompatible changes](https://docs.python.org/3/whatsnew/3.14.html#incompatible-changes) | ||||||
| - Python [removals](https://docs.python.org/3/whatsnew/3.14.html#removed) and [deprecations](https://docs.python.org/3/whatsnew/3.14.html#deprecated) | ||||||
| - C API [removals](https://docs.python.org/3/whatsnew/3.14.html#removed-c-apis) and [deprecations](https://docs.python.org/3/whatsnew/3.14.html#deprecated-c-apis) | ||||||
| - Overview of all [pending deprecations](https://docs.python.org/3/deprecations/index.html) | ||||||
|
|
||||||
| ## Python install manager | ||||||
|
|
||||||
| The installer we offer for Windows is being replaced by our new install manager, which can be installed from [the Windows Store](https://apps.microsoft.com/detail/9NQ7512CXL7T) or from its [download page](https://www.python.org/downloads/latest/pymanager/). See [our documentation](https://docs.python.org/3/using/windows.html) for more information. The JSON file available for download contains the list of all the installable packages available as part of this release, including file URLs and hashes, but is not required to install the latest release. The traditional installer will remain available throughout the 3.14 and 3.15 releases. | ||||||
|
|
||||||
|
|
||||||
| ## More resources | ||||||
|
|
||||||
| - [Online documentation](https://docs.python.org/3/) | ||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Since it'll be 3.15 soon?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not until October, and it's fine to point to /3/ |
||||||
| - [PEP 745](https://peps.python.org/pep-0745/), 3.14 Release Schedule | ||||||
| - Report bugs at [github.com/python/cpython/issues](https://github.com/python/cpython/issues) | ||||||
| - [Help fund Python directly](https://www.python.org/psf/donations/python-dev/) (or via [GitHub Sponsors](https://github.com/sponsors/python)) and support [the Python community](https://www.python.org/psf/donations/) | ||||||
|
|
||||||
|
|
||||||
| ## And now for something completely different | ||||||
|
|
||||||
| I asked [Rodrigo Girão Serrão](https://mathspp.com/) for a fun _π_ fact: | ||||||
|
|
||||||
| > **Euler's identity** says that *e*<sup>*iπ*</sup> + 1 = 0 and is often cited as an equality of profound mathematical elegance, since it relates five of the most fundamental mathematical constants: 0, 1, *π*, *e*, and *i*. A mathematics professor at Stanford University has said "like a Shakespearean sonnet that captures the very essence of love, or a painting that brings out the beauty of the human form that is far more than just skin deep, Euler's equation reaches down into the very depths of existence". | ||||||
|
|
||||||
| [Source](https://en.wikipedia.org/wiki/Euler's_identity) | ||||||
|
|
||||||
|
|
||||||
| ## Enjoy the new release | ||||||
|
|
||||||
| Thanks to all of the many volunteers who help make Python Development and these releases possible! Please consider supporting our efforts by volunteering yourself or through organisation contributions to the [Python Software Foundation](https://www.python.org/psf-landing/). | ||||||
|
|
||||||
| Regards from a cherry-blossoming Helsinki, | ||||||
|
|
||||||
| Your release team,\ | ||||||
| Hugo van Kemenade\ | ||||||
| Ned Deily\ | ||||||
| Steve Dower\ | ||||||
| Łukasz Langa | ||||||
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
With the delay, are we pushing this by a day too?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Going to try and stick to the plan! Don't want to have it too close to PyCon US next week.