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
In the code, there are a few occurrences of scipy.isnan() and scipy.isinf() (for example, around line 89 of file bases.py). They no longer exist, but they can be easily replaced with the corresponding numpy functions, e.g. np.isnan() and np.isinf(). I replaced them myself in my local install, and now it seems to work.
The text was updated successfully, but these errors were encountered:
In the code, there are a few occurrences of
scipy.isnan()
andscipy.isinf()
(for example, around line 89 of filebases.py
). They no longer exist, but they can be easily replaced with the correspondingnumpy
functions, e.g.np.isnan()
andnp.isinf()
. I replaced them myself in my local install, and now it seems to work.The text was updated successfully, but these errors were encountered: