Python 3.13.1 Released [repack] đź”–
class Child(Parent): @override def method(self): ...
# Ensure venv module is installed python3.13 -m ensurepip --upgrade python3.13 -m venv myenv python 3.13.1 released
FROM python:3.13.1-slim # or FROM python:3.13.1-alpine class Child(Parent): @override def method(self):
The headline feature of the 3.13 era is the ability to run Python without the Global Interpreter Lock (GIL). In version 3.13.1, several edge-case bugs related to thread safety and memory management in the free-threaded build have been resolved. This allows developers to more reliably test their multi-threaded applications to see true parallel execution on multi-core processors. JIT Compiler Enhancements python 3.13.1 released



