Skip to content

Commit 88e28d3

Browse files
committed
Switch default engine to "numpy"
Closes #129
1 parent c51a34d commit 88e28d3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

flox/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1353,7 +1353,7 @@ def groupby_reduce(
13531353
min_count: int | None = None,
13541354
split_out: int = 1,
13551355
method: str = "map-reduce",
1356-
engine: str = "flox",
1356+
engine: str = "numpy",
13571357
reindex: bool | None = None,
13581358
finalize_kwargs: Mapping | None = None,
13591359
) -> tuple[DaskArray, np.ndarray | DaskArray]:

flox/xarray.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def xarray_reduce(
6161
split_out: int = 1,
6262
fill_value=None,
6363
method: str = "map-reduce",
64-
engine: str = "flox",
64+
engine: str = "numpy",
6565
keep_attrs: bool | None = True,
6666
skipna: bool | None = None,
6767
min_count: int | None = None,

0 commit comments

Comments
 (0)