You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Replaced missing deprecated "np.mat()" with "np.asmatrix()"
I noticed several 'np.mat()' instances were still present in the package and limited fixmims-harvard#66 . As such, issue mims-harvard#65 was still present.
With this update, I've ensured all instances of 'np.mat()' have been replaced to 'np.asmatrix()'. To do so, I've the following shell command:
find * -type f -exec sed -i 's/np.mat(/np.asmatrix(/g' {} \;
This should fix several broken functions, hopefully making Nimfa compatible with numpy v.2.0.0+. Resolves issue mims-harvard#65 , building on mims-harvard#66 .
0 commit comments