Skip to content

Commit

Permalink
bump min flox version
Browse files Browse the repository at this point in the history
  • Loading branch information
dcherian committed Feb 8, 2024
1 parent ef91cf0 commit 3148209
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion xarray/core/groupby.py
Original file line number Diff line number Diff line change
Expand Up @@ -1273,7 +1273,7 @@ def quantile(
method == "linear"
and OPTIONS["use_flox"]
and contains_only_chunked_or_numpy(self._obj)
and module_available("flox", minversion="0.9.1")
and module_available("flox", minversion="0.9.2")
):
return self._flox_reduce(
func="quantile", q=q, dim=dim, keep_attrs=keep_attrs, skipna=skipna
Expand Down
2 changes: 1 addition & 1 deletion xarray/util/generate_aggregations.py
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ def generate_code(self, method, has_keep_attrs):
Method("std", extra_kwargs=(skipna, ddof), numeric_only=True),
Method("var", extra_kwargs=(skipna, ddof), numeric_only=True),
Method(
"median", extra_kwargs=(skipna,), numeric_only=True, min_flox_version="0.9.1"
"median", extra_kwargs=(skipna,), numeric_only=True, min_flox_version="0.9.2"
),
# Cumulatives:
Method("cumsum", extra_kwargs=(skipna,), numeric_only=True),
Expand Down

0 comments on commit 3148209

Please sign in to comment.