Stay tuned for continued coverage of CPython releases as Python 3.15 moves through its alpha, beta, and release candidate phases throughout 2026.
"This year's big feature update," as described by one technology outlet, "brings many great changes including the free-threaded Python being officially supported". This single change has the potential to reshape the landscape of high-performance computing in Python, but it is far from the only headline. Python 3.14 also introduces new language syntax, a modernized and more helpful interpreter, and powerful new standard library modules. cpython release november 2025 new
Python 3.14, nicknamed "Pi" due to its version number, is now the stable standard. This release introduced several landmark features that developers are beginning to integrate this November: Stay tuned for continued coverage of CPython releases
The experimental "no-GIL" build from Python 3.13 is now an officially supported variant. This allows CPU-bound Python threads to run in true parallel on multi-core systems, though it currently requires a specialized installer or build flag. Python 3
By keeping frequently used data in CPU registers rather than memory (a technique known as top-of-stack caching), CPython 3.15 generates more efficient machine code, reducing memory overhead.
In coffee shops, in server racks, in CI pipelines and meetup slides, CPython’s November 2025 release quietly did what good software often does: it made room for more work to get done, and it made that work a little more predictable, a little faster, and—if you asked the people who care about these things—more delightful.
: Python 3.14 lets you disable the GIL. You can run multi-threaded code in parallel.