Closed
Description
The documentation warns that the universal functions in xarray.ufuncs
should not be used unless compatibility with numpy < 1.13
is required.
Since we only support numpy >= 1.15
: is it time to remove that (already deprecated) module?
Since there are also functions that are not true ufuncs (e.g. np.angle
and np.median
) and need __array_function__
(or something similar, see #3917), we could also keep those and just remove the ones that are dispatched using __array_ufunc__
.