Skip to content

Commit be20e5e

Browse files
committed
Fix misspelled aggegrate_func
1 parent 7efd291 commit be20e5e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cubed_xarray/cubedmanager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def reduction(
8686
arr,
8787
func=func,
8888
combine_func=combine_func,
89-
aggegrate_func=aggregate_func, # TODO fix the typo in argument name in cubed
89+
aggregate_func=aggregate_func,
9090
axis=axis,
9191
dtype=dtype,
9292
keepdims=keepdims,

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ requires-python = ">=3.9"
2323
dependencies = [
2424
"numpy >= 1.17",
2525
"xarray >= 2024.02.0",
26-
"cubed >= 0.6.3",
26+
"cubed >= 0.14.2",
2727
]
2828

2929
[project.urls]

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
cubed>=0.6.0
1+
cubed>=0.14.2
22
numpy>=1.17.1
33
xarray>=2024.02.0

0 commit comments

Comments
 (0)