From ab37e0f9249eec58704373af6183d8014c766abd Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Sat, 2 May 2026 16:34:31 +0300 Subject: [PATCH 1/4] Python 3.14.5 release candidate --- content/posts/python-3145rc1/index.md | 100 ++++++++++++++++++++++++++ 1 file changed, 100 insertions(+) create mode 100644 content/posts/python-3145rc1/index.md diff --git a/content/posts/python-3145rc1/index.md b/content/posts/python-3145rc1/index.md new file mode 100644 index 0000000..6b911bc --- /dev/null +++ b/content/posts/python-3145rc1/index.md @@ -0,0 +1,100 @@ +--- +title: 'Python 3.14.5 release candidate' +publishDate: '2026-05-02' +author: Hugo van Kemenade +description: 'A special release candidate with a new (old) garbage collector.' +tags: + - releases +published: true +--- + +Python 3.14.5rc1 is 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.5. + +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/) +- [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**iπ* + 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 sunny Helsinki, + +Your release team,\ +Hugo van Kemenade\ +Ned Deily\ +Steve Dower\ +Łukasz Langa From f81b6b3abb0d5e8454deab37cb3f274ec83225d2 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Mon, 4 May 2026 18:43:34 +0300 Subject: [PATCH 2/4] Update release date --- content/posts/python-3145rc1/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/posts/python-3145rc1/index.md b/content/posts/python-3145rc1/index.md index 6b911bc..f5a9b32 100644 --- a/content/posts/python-3145rc1/index.md +++ b/content/posts/python-3145rc1/index.md @@ -1,6 +1,6 @@ --- title: 'Python 3.14.5 release candidate' -publishDate: '2026-05-02' +publishDate: '2026-05-04' author: Hugo van Kemenade description: 'A special release candidate with a new (old) garbage collector.' tags: @@ -91,7 +91,7 @@ I asked [Rodrigo Girão Serrão](https://mathspp.com/) for a fun _π_ fact: 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 sunny Helsinki, +Regards from a cherry-blossoming Helsinki, Your release team,\ Hugo van Kemenade\ From 2034e9daafb4d29802ffeae80504bf9c9fb35b2c Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Mon, 4 May 2026 19:01:08 +0300 Subject: [PATCH 3/4] Thanks Stan for review comments --- content/posts/python-3145rc1/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/posts/python-3145rc1/index.md b/content/posts/python-3145rc1/index.md index f5a9b32..73ea251 100644 --- a/content/posts/python-3145rc1/index.md +++ b/content/posts/python-3145rc1/index.md @@ -8,13 +8,13 @@ tags: published: true --- -Python 3.14.5rc1 is the fifth maintenance release of 3.14, containing around 113 bugfixes, build improvements and documentation changes since 3.14.4. +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.5. +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. From bfaa679293c58adeaf096838d1151042425cfe25 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Mon, 4 May 2026 23:09:38 +0300 Subject: [PATCH 4/4] Adjust heading levels --- content/posts/python-3145rc1/index.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/content/posts/python-3145rc1/index.md b/content/posts/python-3145rc1/index.md index 73ea251..ba3e780 100644 --- a/content/posts/python-3145rc1/index.md +++ b/content/posts/python-3145rc1/index.md @@ -29,7 +29,7 @@ Please keep in mind that this is a preview release and its use is ***not*** reco Some of the major new features and changes in Python 3.14 are: -## New features +### 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. @@ -51,26 +51,26 @@ Some of the major new features and changes in Python 3.14 are: 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 +### 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, 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 +## 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 +## More resources - [Online documentation](https://docs.python.org/3/) - [PEP 745](https://peps.python.org/pep-0745/), 3.14 Release Schedule @@ -78,7 +78,7 @@ The installer we offer for Windows is being replaced by our new install manager, - [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 +## And now for something completely different I asked [Rodrigo Girão Serrão](https://mathspp.com/) for a fun _π_ fact: @@ -87,7 +87,7 @@ I asked [Rodrigo Girão Serrão](https://mathspp.com/) for a fun _π_ fact: [Source](https://en.wikipedia.org/wiki/Euler's_identity) -# Enjoy the new release +## 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/).