This PR changes many of the scipy calls to numpy calls. This is because in the future users will not be able to access numpy functions (such as ndarray) through the scipy api. Right now, the code throws a lot of deprecation warnings.
scipy is still a dependency because we do use scipy-specific functions.
This PR changes many of the
scipy
calls tonumpy
calls. This is because in the future users will not be able to accessnumpy
functions (such asndarray
) through thescipy
api. Right now, the code throws a lot of deprecation warnings.scipy
is still a dependency because we do usescipy
-specific functions.Resolves #29