diff --git a/flox/aggregations.py b/flox/aggregations.py index 34bb6ae6d..4c96c92d0 100644 --- a/flox/aggregations.py +++ b/flox/aggregations.py @@ -478,12 +478,6 @@ def _pick_second(*x): combine="sum", kind="cumulate", ) -cumprod_ = Aggregation( - "cumprod", - chunk=None, - combine="prod", - kind="cumulate", -) aggregations = { @@ -515,7 +509,6 @@ def _pick_second(*x): "nanlast": nanlast, # Cumulatives: "cumsum": cumsum_, - "cumprod": cumprod_, }