From 6518c0d5d0e35ba2b99c3bd65949cc1e0f0e9070 Mon Sep 17 00:00:00 2001 From: Martino Mensio Date: Wed, 17 Jul 2024 13:10:34 +0200 Subject: [PATCH] allow newer statsmodels versions (#540) * allow newer statsmodels versions the 0.14 version has more pre-built wheels, and building the 0.13 ones requires additional libraries, otherwise you get errors such https://github.com/OpenSTEF/openstef/issues/514 Signed-off-by: Martino Mensio * Update requirements.txt for statsmodels do not allow major version change Co-authored-by: Egor Dmitriev Signed-off-by: Martino Mensio --------- Signed-off-by: Martino Mensio Co-authored-by: Egor Dmitriev --- requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index e1c6cf9ff..4c93017cc 100644 --- a/requirements.txt +++ b/requirements.txt @@ -17,6 +17,6 @@ pydantic-settings~=2.3 pymsteams~=0.2.2 # TODO remove teams dependency scikit-learn~=1.3 scipy~=1.10 -statsmodels~=0.13.5 +statsmodels>=0.13.5,<1.0.0 structlog>=23.1,<25 -xgboost~=2.0 \ No newline at end of file +xgboost~=2.0