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
Using the PostProcessing.Cornerplot gives the following issue:
AttributeError: module 'numpy' has no attribute 'float'.
`np.float` was a deprecated alias for the builtin `float`. To avoid this error in existing code, use `float` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.float64` here.
The aliases was originally deprecated in NumPy 1.20;
Can be solved by changing _np.float into float in line 947 in _corner.py
Using the
PostProcessing.Cornerplot
gives the following issue:Can be solved by changing
_np.float
intofloat
in line 947 in_corner.py
Related to #336
The text was updated successfully, but these errors were encountered: