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
14 changes: 7 additions & 7 deletions backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ description = "NetPlanner backend — AI-powered network business decision-suppo
requires-python = ">=3.12"
dependencies = [
# --- Web framework ---
"fastapi==0.138.1",
"uvicorn[standard]==0.49.0",
"fastapi==0.139.0",
"uvicorn[standard]==0.51.0",
# Pinned >=1.0.1 to fix PYSEC-2026-161 (DoS via Content-Type header in
# MultiPartParser). 1.3.1 fixes GHSA-82w8-qh3p-5jfq (form() limit DoS) and
# GHSA-jp82-jpqv-5vv3 (host poisoning). fastapi 0.136.3 requires
Expand All @@ -21,19 +21,19 @@ dependencies = [
"SQLAlchemy==2.0.49",
"aiosqlite==0.22.1",
"alembic==1.18.5",
"greenlet==3.5.2",
"greenlet==3.5.3",
# --- Validation / settings ---
"pydantic==2.13.4",
# 2.14.2 fixes GHSA-4xgf-cpjx-pc3j (NestedSecretsSettingsSource symlink
# escape). Not reachable here (env_file only, no secrets_dir) but patched.
"pydantic-settings==2.14.2",
"python-dotenv==1.2.2",
# --- AI layer ---
"anthropic==0.112.0",
"anthropic==0.116.0",
# Provider-agnostic routing for the multi-provider eval (NVIDIA NIM via the
# `nvidia_nim/` provider). The default path stays native Anthropic; LiteLLM
# is only exercised when `provider=nvidia_nim`. Pinned exact (SEC-30).
"litellm==1.89.4",
"litellm==1.92.0",
# --- PDF generation ---
"weasyprint==69.0",
"markdown==3.10.2",
Expand All @@ -58,10 +58,10 @@ dev = [
"pytest-asyncio==1.4.0",
"pytest-cov==7.1.0",
"httpx==0.28.1",
"ruff==0.15.19",
"ruff==0.15.21",
"black==26.5.1",
"isort==8.0.1",
"mypy==2.1.0",
"mypy==2.3.0",
"bandit==1.9.4",
]

Expand Down
Loading
Loading