generated from mathias/template-go-web
The Autoresearch Loop workflow failed at "Set up Python venv" on every run:
ERROR: Could not find a version that satisfies the requirement histdata>=1.3
(from versions: 1.0, 1.1)
histdata never published 1.3 — 1.1 is the newest release. Lower the floor so
pip can resolve and the loop can actually start.
11 lines
508 B
Plaintext
11 lines
508 B
Plaintext
# Python deps for the autoresearch loop (train.py + scripts). Install torch from
|
|
# the cu130 index FIRST (koala Blackwell sm_120, torch 2.12.1+cu130 verified):
|
|
# pip install torch --index-url https://download.pytorch.org/whl/cu130
|
|
# pip install -r requirements.txt
|
|
numpy>=2.0
|
|
pandas>=2.2
|
|
pyarrow>=16
|
|
histdata>=1.1 # histdata.com downloader (1.1 is newest on PyPI; 1.3 never existed)
|
|
hmmlearn>=0.3 # regime detector (prepare_regime.py, jepa-fx-risk#13)
|
|
scikit-learn>=1.4 # HMM dependency
|