You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: increase minimum versions for starlette and uvicorn
Increase minimum versions for starlette and uvicorn to avoid
compatibility issues with lowest-direct dependency resolution.
The previous minimum versions (starlette>=0.27, uvicorn>=0.31.1)
allowed uvicorn 0.32.x which has a bug where uvicorn.loops.auto
module is missing the auto_loop_setup attribute, causing test
failures on Ubuntu runners.
Updated to:
- starlette>=0.40.0 (from 0.27)
- uvicorn>=0.33.0 (from 0.31.1)
This ensures lowest-direct resolution picks versions that are
compatible with the current codebase.
Github-Issue: #1325
0 commit comments