Skip to content

Commit 411e99e

Browse files
committed
Python 3.14.5 release candidate
1 parent 65d4c1f commit 411e99e

1 file changed

Lines changed: 101 additions & 0 deletions

File tree

Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
---
2+
title: 'Python 3.14.5 release candidate'
3+
publishDate: '2026-05-02'
4+
updatedDate: '2026-05-02'
5+
author: Hugo van Kemenade
6+
description: 'A special release candidate with a new (old) garbage collector.'
7+
tags:
8+
- releases
9+
published: true
10+
---
11+
12+
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.
13+
14+
https://www.python.org/downloads/release/python-3145rc1/
15+
16+
## Garbage collector
17+
18+
Notably, the garbage collector (GC) has changed in Python 3.14.5.
19+
20+
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.
21+
22+
## Call to action
23+
24+
We ***strongly encourage*** testing of this release candidate, ahead of the planned 3.14.5 final on Friday 2026-05-08.
25+
As always, report any issues to [the Python bug tracker](https://github.com/python/cpython/issues).
26+
Please keep in mind that this is a preview release and its use is ***not*** recommended for production environments.
27+
28+
29+
## Major new features of the 3.14 series, compared to 3.13
30+
31+
Some of the major new features and changes in Python 3.14 are:
32+
33+
## New features
34+
35+
- [PEP 779](https://docs.python.org/3/whatsnew/3.14.html#whatsnew314-free-threaded-now-supported): Free-threaded Python is officially supported
36+
- [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.
37+
- [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.
38+
- [PEP 734](https://docs.python.org/3/whatsnew/3.14.html#pep-734-multiple-interpreters-in-the-standard-library): Multiple interpreters in the stdlib.
39+
- [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.
40+
- [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.
41+
- [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.
42+
- [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.
43+
- [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.
44+
- [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.
45+
- [PEP 741](https://docs.python.org/3/whatsnew/3.14.html#whatsnew314-capi-config): An improved C API for configuring Python.
46+
- 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.
47+
- [Improved error messages.](https://docs.python.org/3/whatsnew/3.14.html#improved-error-messages)
48+
- [Builtin implementation of HMAC](https://docs.python.org/3/whatsnew/3.14.html#hmac) with formally verified code from the HACL* project.
49+
- 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.
50+
- The pdb module now supports [remote attaching to a running Python process](https://docs.python.org/3/whatsnew/3.14.html#pdb).
51+
52+
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).
53+
54+
55+
## Build changes
56+
57+
- [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.
58+
- Official macOS and Windows release binaries include an [*experimental* JIT compiler](https://docs.python.org/3/whatsnew/3.14.html#whatsnew314-jit-compiler).
59+
- Official [Android binary releases](https://docs.python.org/3/whatsnew/3.14.html#whatsnew314-build-changes) are now available.
60+
61+
62+
## Incompatible changes, removals and new deprecations
63+
64+
- [Incompatible changes](https://docs.python.org/3/whatsnew/3.14.html#incompatible-changes)
65+
- Python [removals](https://docs.python.org/3/whatsnew/3.14.html#removed) and [deprecations](https://docs.python.org/3/whatsnew/3.14.html#deprecated)
66+
- 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)
67+
- Overview of all [pending deprecations](https://docs.python.org/3/deprecations/index.html)
68+
69+
# Python install manager
70+
71+
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.
72+
73+
74+
# More resources
75+
76+
- [Online documentation](https://docs.python.org/3/)
77+
- [PEP 745](https://peps.python.org/pep-0745/), 3.14 Release Schedule
78+
- Report bugs at [github.com/python/cpython/issues](https://github.com/python/cpython/issues)
79+
- [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/)
80+
81+
82+
# And now for something completely different
83+
84+
I asked [Rodrigo Girão Serrão](https://mathspp.com/) for a fun _π_ fact:
85+
86+
> **Euler's identity** says that *e*<sup>**</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".
87+
88+
[Source](https://en.wikipedia.org/wiki/Euler's_identity)
89+
90+
91+
# Enjoy the new release
92+
93+
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/).
94+
95+
Regards from a sunny Helsinki,
96+
97+
Your release team,\
98+
Hugo van Kemenade\
99+
Ned Deily\
100+
Steve Dower\
101+
Łukasz Langa

0 commit comments

Comments
 (0)