system-prompts-and-models-o.../salesflow-saas/backend/requirements-dev.txt
Claude df3019ce26
fix(ci): pin pytest==8.3.4 + pytest-asyncio==0.24.0 exact versions
Both requirements.txt and requirements-dev.txt had conflicting
minimum-version specs for pytest-asyncio (>=0.23 vs >=0.24).
pip resolved to latest available which may have breaking changes
(pytest-asyncio 0.25+ changed asyncio_mode behavior).

Pin to exact known-good versions:
- pytest==8.3.4 (last stable 8.3.x)
- pytest-asyncio==0.24.0 (matches asyncio_default_fixture_loop_scope)
- aiosqlite==0.20.0 (pinned for SQLite CI compatibility)

https://claude.ai/code/session_01W1rJthWDkasijTdXCfxVHs
2026-04-17 05:02:44 +00:00

6 lines
126 B
Plaintext

# Dev / CI — not required in production images
pytest==8.3.4
pytest-asyncio==0.24.0
aiosqlite==0.20.0
httpx>=0.28.1,<0.29.0