Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .migration-backup/apps/ai/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ httpx==0.28.1
python-dotenv==1.2.2
pydantic==2.10.5
sse-starlette==2.2.1
starlette==1.0.1
starlette==1.3.1
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ httpx==0.28.1
python-dotenv==1.2.2
pydantic==2.10.5
sse-starlette==2.2.1
starlette==0.49.1
starlette==1.3.1

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Bug: starlette==1.3.1 likely conflicts with fastapi==0.115.6

In requirements.txt, fastapi==0.115.6 declares a dependency constraint of starlette>=0.40.0,<0.42.0. Pinning starlette==1.3.1 (a major-version jump) directly violates that constraint. pip install will either fail to resolve the dependency graph or, if forced, install a Starlette version whose ABI/API FastAPI 0.115.6 was never tested against — risking import/runtime errors. Note the previous pin (0.49.1) was already outside FastAPI's range, so this is a pre-existing inconsistency the bump does not fix. Recommend either upgrading fastapi to a release that supports Starlette 1.x, or removing the explicit starlette pin and letting FastAPI resolve a compatible version. The .migration-backup/apps/ai/requirements.txt uses fastapi==0.124.0, which is more likely to accept Starlette 1.x, but its compatibility should also be confirmed.

Was this helpful? React with 👍 / 👎