You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from pandas import (to_datetime, Int64Index, DatetimeIndex, Period,
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/home/jabbera/stats/.venv/lib/python3.8/site-packages/statsmodels/api.py", line 27, in <module>
from .tsa import api as tsa
File "/home/jabbera/stats/.venv/lib/python3.8/site-packages/statsmodels/tsa/api.py", line 31, in <module>
from .filters import api as filters
File "/home/jabbera/stats/.venv/lib/python3.8/site-packages/statsmodels/tsa/filters/api.py", line 6, in <module>
from .filtertools import miso_lfilter, convolution_filter, recursive_filter
File "/home/jabbera/stats/.venv/lib/python3.8/site-packages/statsmodels/tsa/filters/filtertools.py", line 18, in <module>
from scipy.signal.signaltools import _centered as trim_centered
ImportError: cannot import name '_centered' from 'scipy.signal.signaltools' (/home/jabbera/stats/.venv/lib/python3.8/site-packages/scipy/signal/signaltools.py)
Describe the solution you'd like
Remove the requirement for statsmodels < 13. I really don't want to be pinned to scipy < 1.8.0
Describe alternatives you've considered
Downgrade scipy.
Are you willing to contribute
Need to check with my legal department.
The text was updated successfully, but these errors were encountered:
Describe the problem.
statsmodels < 13 can't be installed with scipy >= 1.8.0: https://stackoverflow.com/questions/71106940/cannot-import-name-centered-from-scipy-signal-signaltools
This is a valid configuration per this projects setup.py:
gs-quant/setup.py
Lines 76 to 77 in 1272790
Repro:
Traceback:
Describe the solution you'd like
Remove the requirement for statsmodels < 13. I really don't want to be pinned to scipy < 1.8.0
Describe alternatives you've considered
Downgrade scipy.
Are you willing to contribute
Need to check with my legal department.
The text was updated successfully, but these errors were encountered: