Vue d'ensemble

Uvicorn 0.38, publie le 18 octobre 2025, ajoute le support de Python 3.14.

Fonctionnalites principales

Support Python 3.14

Uvicorn 0.38 est compatible avec Python 3.14, incluant les corrections necessaires pour les changements de l'API asyncio.

python
import uvicorn

async def app(scope, receive, send):
    await send({
        'type': 'http.response.start',
        'status': 200,
        'headers': [[b'content-type', b'text/plain']],
    })
    await send({
        'type': 'http.response.body',
        'body': b'Hello from Uvicorn 0.38!',
    })

# uvicorn.run(app, port=8000)

Sources