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 api/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# UTAC Modular API Requirements

# FastAPI Framework
fastapi==0.128.0
uvicorn[standard]==0.40.0
fastapi==0.132.0
uvicorn[standard]==0.41.0
pydantic==2.12.5

# Scientific Computing
Expand Down
4 changes: 2 additions & 2 deletions constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ requests>=2.31,<3
# Tooling and docs
black>=24.4,<27
mypy>=1.10,<1.20
nox>=2024.4.15,<2025.12
nox>=2024.4.15,<2026.3
pytest>=8.2,<10
pytest-cov>=4.1,<8
ruff>=0.5.0,<0.15
ruff>=0.5.0,<0.16
myst-parser>=2.0,<5
sphinx>=7.3,<9
16 changes: 8 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,18 @@ dependencies = [
dev = [
"black>=24.4,<27",
"mypy>=1.10,<1.20",
"nox>=2024.4.15,<2025.12",
"nox>=2024.4.15,<2026.3",
"pytest>=8.2,<10",
"pytest-cov>=4.1,<8",
"ruff>=0.5.0,<0.15",
"ruff>=0.5.0,<0.16",
]
docs = [
"myst-parser>=2.0,<5",
"sphinx>=7.3,<9",
]
api = [
"fastapi>=0.104,<0.129",
"uvicorn[standard]>=0.24,<0.41",
"fastapi>=0.104,<0.133",
"uvicorn[standard]>=0.24,<0.42",
"httpx>=0.25",
"websockets>=12.0,<17",
]
Expand All @@ -52,14 +52,14 @@ llm = [
all = [
"black>=24.4,<27",
"mypy>=1.10,<1.20",
"nox>=2024.4.15,<2025.12",
"nox>=2024.4.15,<2026.3",
"pytest>=8.2,<10",
"pytest-cov>=4.1,<8",
"ruff>=0.5.0,<0.15",
"ruff>=0.5.0,<0.16",
"myst-parser>=2.0,<5",
"sphinx>=7.3,<9",
"fastapi>=0.104,<0.129",
"uvicorn[standard]>=0.24,<0.41",
"fastapi>=0.104,<0.133",
"uvicorn[standard]>=0.24,<0.42",
"httpx>=0.25",
"websockets>=12.0,<17",
"openai>=1.0,<3",
Expand Down
4 changes: 2 additions & 2 deletions requirements-optional.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
# REST API & Web Server
# =============================================================================
# FastAPI framework for REST endpoints
fastapi>=0.104.0,<0.129
fastapi>=0.104.0,<0.133

# ASGI server for running the API
uvicorn[standard]>=0.24.0,<0.41
uvicorn[standard]>=0.24.0,<0.42

# HTTP client for testing FastAPI endpoints
httpx>=0.25.0
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ numpy>=1.26,<2.3
scipy>=1.11,<1.16
pandas>=2.1,<2.4
matplotlib>=3.8,<3.11
plotly>=5.18,<6
plotly>=5.18,<7
streamlit>=1.30,<2
pyyaml>=6.0,<7
jsonschema>=4.20,<5
Loading