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
4 changes: 2 additions & 2 deletions requirements_ci.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# CI test job -- lean install, no torch/deepeval (~2 min cold vs ~25 min with requirements_full.txt).
# Full stack (dev, evals, ML training): requirements_full.txt
fastapi==0.115.0
starlette>=0.37.2,<0.39.0
fastapi==0.115.4
starlette>=0.40.0,<0.42.0
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Badge Keep Starlette within FastAPI's dependency range

With fastapi==0.115.0 still pinned here, this new Starlette range is unsatisfiable: FastAPI 0.115.0 declares starlette<0.39.0,>=0.37.2, so pip's resolver cannot install both it and starlette>=0.40.0,<0.42.0. I checked .github/workflows/ci.yml and the Dockerfiles, which install requirements_ci.txt, so CI and container builds will fail at dependency resolution until FastAPI is upgraded to a version that allows Starlette 0.40+ or this bound is kept below 0.39.

Useful? React with 👍 / 👎.

uvicorn[standard]==0.30.6
sqlalchemy[asyncio]==2.0.35
asyncpg==0.29.0
Expand Down
2 changes: 1 addition & 1 deletion requirements_demo.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Minimal requirements for Streamlit Cloud demo deployment.
# The full stack requires requirements.txt (includes Tesseract, pgvector, etc.)
# This file covers only what streamlit_demo.py needs.
streamlit==1.39.0
streamlit>=1.54.0
streamlit-extras>=0.4.0
plotly==5.24.1
4 changes: 2 additions & 2 deletions requirements_full.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Full development stack -- includes ML training (deepeval, ragas, langchain) and all optional deps.
# CI uses requirements_ci.txt (excludes torch). Streamlit Cloud uses requirements.txt.
fastapi==0.115.0
starlette>=0.37.2,<0.39.0
fastapi==0.115.4
starlette>=0.40.0,<0.42.0
uvicorn[standard]==0.30.6
sqlalchemy[asyncio]==2.0.35
asyncpg==0.29.0
Expand Down
Loading