From 731673061e79e9deca343e307ffe1cc66bc99b81 Mon Sep 17 00:00:00 2001 From: mathias Date: Mon, 29 Jun 2026 18:41:07 +0000 Subject: [PATCH] fix(deps): histdata>=1.3 is unsatisfiable, pin to >=1.1 (newest on PyPI) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 5454030..6edd9e3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,6 +5,6 @@ numpy>=2.0 pandas>=2.2 pyarrow>=16 -histdata>=1.3 # histdata.com downloader (handles the tk token politely) +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