tradingSystem/requirements.txt

14 lines
437 B
Plaintext

pydantic>=2.5
pydantic-settings>=2.1
SQLAlchemy>=2.0
PyMySQL>=1.1
# redis-py 6.x 默认按 RESP3 握手 (先发 HELLO 3), 而 208/150 两台 Redis 是 6.0 以前的版本,
# 会回 "unknown command HELLO" 导致行情与 Celery 总线全断 —— 锁在 5.x (默认 RESP2)。
# 代码侧另有 protocol=2 双保险 (app/services/market.py)。
redis>=5.0,<6.0
celery>=5.3
fastapi>=0.110
uvicorn>=0.27
requests>=2.31
chinesecalendar>=1.9