mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-18 07:19:35 +00:00
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
6 lines
126 B
Plaintext
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
|