Closed neutrinoceros closed 1 year ago
Seems like we overlooked a deprecation cycle
AttributeError: module 'numpy' has no attribute 'float'
numpy.float was deprecated in numpy 1.20 and removed in 1.24, because it was counter-intuitively just aliasing builtin float. So the conservative fix is just to use float.
numpy.float
float
Seems like we overlooked a deprecation cycle
numpy.float
was deprecated in numpy 1.20 and removed in 1.24, because it was counter-intuitively just aliasing builtinfloat
. So the conservative fix is just to usefloat
.