Skip to content

Commit c8e6369

Browse files
authored
fix: add numpy, httpx, version pins to backend/requirements.txt
1 parent 16d780e commit c8e6369

1 file changed

Lines changed: 21 additions & 8 deletions

File tree

backend/requirements.txt

Lines changed: 21 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,21 @@
1-
fastapi
2-
uvicorn
3-
pandas
4-
scikit-learn
5-
joblib
6-
python-multipart
7-
requests
8-
sqlalchemy
1+
# Backend API dependencies
2+
fastapi>=0.104.0
3+
uvicorn[standard]>=0.24.0
4+
5+
# Data processing & ML
6+
numpy>=1.24.0
7+
pandas>=2.0.0
8+
scikit-learn>=1.3.0
9+
joblib>=1.3.0
10+
11+
# Database
12+
sqlalchemy>=2.0.0
13+
14+
# File uploads & HTTP
15+
python-multipart>=0.0.6
16+
requests>=2.31.0
17+
httpx>=0.25.0
18+
19+
# Testing
20+
pytest>=7.4.0
21+
pytest-cov>=4.1.0

0 commit comments

Comments
 (0)