Closed rchen152 closed 1 year ago
np.alltrue is recently deprecated: https://numpy.org/doc/stable/release/1.25.0-notes.html#deprecations.
I left np.all aliased to alltrue because all is also the name of a builtin, and some linters complain if you overwrite a builtin.
all
LGTM. Thanks!
np.alltrue is recently deprecated: https://numpy.org/doc/stable/release/1.25.0-notes.html#deprecations.
I left np.all aliased to alltrue because
all
is also the name of a builtin, and some linters complain if you overwrite a builtin.