2017-11-01 Issue with scipy 1.0 and statsmodels 0.8ΒΆ

It is difficult to fix a package when there is no error but silent warnings. statsmodels fails with scipy 1.0 because some deprecated functions were removed: chisqprob. I sometimes look into warnings but many packages do not fix them and this is quite difficult to notice yours in that long list. I created a function which fixes it. The documentation contains more information about it.

<<<

from textwrap import dedent
from pymyinstall.fix import fix_scipy10_for_statsmodels08
print(dedent(fix_scipy10_for_statsmodels08.__doc__))

>>>

scipy deprecated some functions still used by statsmodels 0.8. See deprecated features and pull request 3942 in statsmodels.

source on GitHub