Skip to content

Commit 7cbeec3

Browse files
committed
fix(deps): correct numpy and pytest version constraints
numpy>=1.26.4,<2: Python 3.12 requires numpy 1.26+, cap at <2 to avoid ABI breakage. pytest>=9.0.0 with syrupy>=5.0.0: syrupy 5.x supports pytest 9, removing the previous version conflict.
1 parent 7ab9fab commit 7cbeec3

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

backend/requirements.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ python-dotenv>=1.2.1
1111
python-jose[cryptography]>=3.5.0
1212

1313
# Testing
14-
pytest>=8.0.0
14+
pytest>=9.0.0
15+
syrupy>=5.0.0
1516
pytest-asyncio>=1.3.0
1617

1718
# Database
@@ -25,7 +26,7 @@ langgraph-checkpoint-mongodb>=0.3.1
2526
langsmith>=0.6.9
2627

2728
# RAG Enrichment (Gemini embeddings)
28-
numpy>=1.24.0
29+
numpy>=1.26.4,<2
2930

3031
# SSE Support
3132
sse-starlette>=3.2.0

0 commit comments

Comments
 (0)