hildensia/bayesian_changepoint_detection

Scipy Import Error on newer versions

fhaselbeck opened this issue · 2 comments

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

I ust recognized that I installed an old version using pip.
Error was already fixed: #22

Sorry for the misunderstanding