Skip to content

Commit 3148209

Browse files
committed
bump min flox version
1 parent ef91cf0 commit 3148209

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

xarray/core/groupby.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1273,7 +1273,7 @@ def quantile(
12731273
method == "linear"
12741274
and OPTIONS["use_flox"]
12751275
and contains_only_chunked_or_numpy(self._obj)
1276-
and module_available("flox", minversion="0.9.1")
1276+
and module_available("flox", minversion="0.9.2")
12771277
):
12781278
return self._flox_reduce(
12791279
func="quantile", q=q, dim=dim, keep_attrs=keep_attrs, skipna=skipna

xarray/util/generate_aggregations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ def generate_code(self, method, has_keep_attrs):
531531
Method("std", extra_kwargs=(skipna, ddof), numeric_only=True),
532532
Method("var", extra_kwargs=(skipna, ddof), numeric_only=True),
533533
Method(
534-
"median", extra_kwargs=(skipna,), numeric_only=True, min_flox_version="0.9.1"
534+
"median", extra_kwargs=(skipna,), numeric_only=True, min_flox_version="0.9.2"
535535
),
536536
# Cumulatives:
537537
Method("cumsum", extra_kwargs=(skipna,), numeric_only=True),

0 commit comments

Comments
 (0)