SafeUM
Home Services Download About

Axarhöfði 14, 110 Reykjavik, Iceland

Iceland - 2015

Python 3.13 News - 2025 November New!

November 2025 will mark a watershed moment in the history of Python. While version 3.12 brought incremental improvements and 3.14 is slated for major syntactic revolutions, Python 3.13 is the "plumbing release"—a quiet but seismic shift under the hood. Codenamed (unofficially) the "GIL-liberation" release, 3.13 is the first production-ready version where you can run Python without the Global Interpreter Lock (GIL), albeit experimentally.

Python 3.13 is the upgrade that pays for itself. Want to try it early? The first beta (3.13.0b1) is expected in May 2025. You can test the --disable-gil build today from the main branch of CPython. python 3.13 news 2025 november

With the experimental no-GIL mode, Python can now credibly compete with Java and Go for CPU-bound parallel workloads. With the C&P JIT, it narrows the gap with Lua and JavaScript in tight loops. November 2025 will mark a watershed moment in