Skip to content

Commit 21cbeb9

Browse files
committed
fix(deps): Fixed bug for FastAPI dependencies not installing.
Some dependencies essential to FastAPI are not installed when building API projects. E.g., uvicorn. Fix: Added 'standard' to FastAPI dependencies command.
1 parent c23634e commit 21cbeb9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

zenforge/config/deps.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
]
1313

1414
API = [
15-
"fastapi",
15+
"fastapi[standard]",
1616
"logfire",
1717
]
1818

@@ -24,7 +24,7 @@
2424

2525
API_AGENTS = [
2626
"pydantic-ai-slim[logfire]",
27-
"fastapi",
27+
"fastapi[standard]",
2828
]
2929

3030
BASIC = CORE + CORE_CONDITIONAL

0 commit comments

Comments
 (0)