-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
xarray ufuncs #4116
Comments
Sounds good to me |
which suggestion do you mean? Removing the whole module or just the |
actually, it seems we might need to wait a bit longer, the deprecation warning says we would remove the |
👍 |
In order to maintain a list of currently relevant issues, we mark issues as stale after a period of inactivity If this issue remains relevant, please comment here or remove the |
The documentation warns that the universal functions in
xarray.ufuncs
should not be used unless compatibility withnumpy < 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
andnp.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__
.The text was updated successfully, but these errors were encountered: