From 796cdcef30cfec0619be670427d9def8e0f420d2 Mon Sep 17 00:00:00 2001 From: Cameron T Ellis Date: Mon, 26 Jun 2023 16:54:54 -0700 Subject: [PATCH] Update setup.py The new versions of statsmodels have broken fmrisim. In particular, they have removed the calls for ARMA models and replaced them with a new ARIMA model. The latest version compatible with fmrisim is 0.12.0 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2aa348d3..c01cb1c7 100644 --- a/setup.py +++ b/setup.py @@ -139,7 +139,7 @@ def finalize_options(self): 'scikit-learn[alldeps]>=0.18', # See https://github.com/scipy/scipy/pull/8082 'scipy!=1.0.0', - 'statsmodels', + 'statsmodels<=0.12.0', 'pymanopt', 'theano>=1.0.4', # See https://github.com/Theano/Theano/pull/6671 'pybind11>=1.7',