Skip to content

Commit 491c225

Browse files
authored
Merge branch 'main' into topk
2 parents caa98b8 + d6bdf0b commit 491c225

File tree

6 files changed

+7
-9
lines changed

6 files changed

+7
-9
lines changed

ci/env-numpy1.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,4 @@ dependencies:
2626
- numba
2727
- numbagg>=0.3
2828
- hypothesis
29-
- pip:
30-
- git+https://github.com/dcherian/xarray.git
29+
- xarray

ci/environment.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ dependencies:
2626
- numba
2727
- numbagg>=0.3
2828
- hypothesis
29-
- pip:
30-
- git+https://github.com/dcherian/xarray.git
29+
- xarray
30+
- zarr<3 # unpin when cubed is fixed.

ci/no-dask.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,4 @@ dependencies:
2121
- toolz
2222
- numba
2323
- numbagg>=0.3
24-
- pip:
25-
- git+https://github.com/dcherian/xarray.git
24+
- xarray

ci/no-numba.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,4 @@ dependencies:
2323
- numpy_groupies>=0.9.19
2424
- pooch
2525
- toolz
26-
- pip:
27-
- git+https://github.com/dcherian/xarray.git
26+
- xarray

flox/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1931,7 +1931,7 @@ def _groupby_combine(a, axis, dummy_axis, dtype, keepdims):
19311931
out[field] = combine(a[field], axis=dummy_axis, keepdims=keepdims)
19321932
return out
19331933

1934-
def _groupby_aggregate(a):
1934+
def _groupby_aggregate(a, **kwargs):
19351935
# Convert cubed dict to one that _finalize_results works with
19361936
results = {"groups": expected_groups, "intermediates": a.values()}
19371937
out = _finalize_results(results, agg, axis, expected_groups, reindex)

tests/test_core.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1284,6 +1284,7 @@ def test_group_by_datetime(engine, method):
12841284
assert_equal(expected, actual)
12851285

12861286

1287+
@pytest.mark.xfail
12871288
@requires_cubed
12881289
@pytest.mark.parametrize("method", ["blockwise", "map-reduce"])
12891290
def test_group_by_datetime_cubed(engine, method):

0 commit comments

Comments
 (0)