The CPython standard library has been expanded and improved in the November 2025 release. Some of the notable additions and updates include:
Development tools also received major "November Release" updates to align with these changes: Python in Visual Studio Code - November 2025 Release
: The addition of the compression.zstd module, offering decompressions speeds up to 30% faster than previous methods. cpython release november 2025 new
Python 3.14 also includes a range of other improvements:
This change brings several benefits:
Python 3.14 is now the stable version of the language, and developers are encouraged to upgrade. The free-threaded (no-GIL) build is available for those who need true parallel execution, while the new t-strings and deferred annotations make the language more expressive and easier to use.
While there isn't a "new" major version specifically launched in November, this month marks the peak period for developers to migrate as the community adjusts to the 3.14 ecosystem and the official retirement of Python 3.9. The Star of the Season: Python 3.14 The CPython standard library has been expanded and
, Python 3.14 is the current stable version as of November 2025. Key highlights include: Performance & Concurrency: This release features the official support for free-threaded Python (no Global Interpreter Lock) and enhanced support for subinterpreters
Beyond subinterpreters, CPython’s improvements were felt in quieter, pervasive ways. The garbage collector’s heuristics were tuned to common modern workloads—less frequent full collections on servers with long-lived objects, better throughput for short-lived request handlers. Pattern matching’s ergonomics were refined, with clearer error messages and a few expressive conveniences that made previously contorted code concise without ambiguity. Import caching and startup got incremental speedups that, when rolled out across millions of small scripts and containers, added up. The free-threaded (no-GIL) build is available for those
The new CPython interpreter makes coding much friendlier. You will notice these upgrades during daily use: