From 8f470fbe55f28fb988d70445a0e4d77b045db83e Mon Sep 17 00:00:00 2001 From: grossmj Date: Mon, 23 Feb 2026 17:14:16 +0800 Subject: [PATCH] Update FastAPI dependency to support Python 3.9 --- requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 97b904590..db09535b9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,8 @@ uvicorn==0.39.0; python_version == '3.9' # version 0.39.0 is the last version supporting Python 3.9 uvicorn==0.41.0; python_version >= '3.10' pydantic==2.12.5 -fastapi==0.131.0 +fastapi==0.128.8; python_version == '3.9' # version 0.128.8 is the last version supporting Python 3.9 +fastapi==0.131.0; python_version >= '3.10' python-multipart==0.0.20; python_version == '3.9' # version 0.0.20 is the last to support Python 3.9 python-multipart==0.0.22; python_version >= '3.10' websockets==15.0.1; python_version == '3.9' # version 15.0.1 is the last to support Python 3.9