Vue d'ensemble
Uvicorn 0.32, publié le 15 octobre 2024, ajoute le support officiel de Python 3.13.
Fonctionnalités principales
Python 3.13
Python 3.13 est pleinement supporté, incluant la compatibilité avec le nouveau GIL expérimental (free-threaded mode) pour les cas d'usage avancés.
python
# Uvicorn 0.32 avec Python 3.13
# pip install uvicorn>=0.32
import uvicorn
import sys
print(f'Python {sys.version}')
uvicorn.run('app:app', host='0.0.0.0', port=8000)
