Scipy Import Error on newer versions
fhaselbeck opened this issue · 2 comments
fhaselbeck commented
Hi guys,
there is an import issue if one uses newer scipy versions.
Would be a quick fix if you adapt the import statement at offline_changepoint_detection.py
try: # SciPy >= 0.19
from scipy.special import comb, logsumexp
except ImportError:
from scipy.misc import comb, logsumexp # noqa
hildensia commented
Would you mind sending a pull request?
…On Thu, Mar 4, 2021, at 4:21 PM, fhaselbeck wrote:
Hi guys,
there is an import issue if one uses newer scipy versions.
Would be a quick fix if you adapt the import statement at
`offline_changepoint_detection.py`
`try: # SciPy >= 0.19
from scipy.special import comb, logsumexp
except ImportError:
from scipy.misc import comb, logsumexp # noqa
`
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#29>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AAAVBVHCKIS2XI26KUMKPMTTB6QOZANCNFSM4YTOFD7Q>.
fhaselbeck commented
I ust recognized that I installed an old version using pip.
Error was already fixed: #22
Sorry for the misunderstanding