Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
With the latest scipy 1.15 release `scipy.misc` was deprecated which triggers a warning in autograd: ``` DeprecationWarning: scipy.misc is deprecated and will be removed in 2.0.0 import scipy.misc as osp_misc ``` We only use the misc module to provide `logsumexp` which has been moved to `scipy.special` many years ago, so removing the functionality should not change anything for users on python>=3.9. I also changed the import in the fluidsim example ([imread](https://docs.scipy.org/doc/scipy-1.2.3/reference/generated/scipy.ndimage.imread.html#scipy.ndimage.imread) is deprecated in SciPy 1.0.0. Use matplotlib.pyplot.imread instead)
- Loading branch information