-
Notifications
You must be signed in to change notification settings - Fork 18
_datetime_nanmin() broken (TypeError) #403
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
Comments
dang it. Can you provide an example please? Clearly the current test suite isn't good enough. |
This is failing for me with
EDIT: An example using
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There appears to be either a typo (
min
instead ofnp.nanmin
) or a missing import in the new_datetime_nanmin
function.Specifically, line 363:
array = min(array, skipna=True)
Always results in:
TypeError: 'skipna' is an invalid keyword argument for min()
Permalink:
https://github.com/xarray-contrib/flox/blob/4f6164f74a657d95f795c374e31e91a7e7643e9f/flox/xrutils.py#L363C5-L363C36
The text was updated successfully, but these errors were encountered: