Skip to content

Commit 597d100

Browse files
GeraldIrGerald Walter Irsiegler
and
Gerald Walter Irsiegler
authored
reverse experimental chunking change (#178)
Co-authored-by: Gerald Walter Irsiegler <gerald@Irsiegler-P14s>
1 parent a0edb50 commit 597d100

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

openeo_processes_dask/process_implementations/ml/curve_fitting.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ def fit_curve(
5353
# so we do this to generate names locally
5454
parameters = {f"param_{i}": v for i, v in enumerate(parameters)}
5555

56-
chunking = {key: "auto" for key in data.dims}
56+
chunking = {key: "auto" for key in data.dims if key != dimension}
57+
chunking[dimension] = -1
5758

5859
# The dimension along which to fit the curves cannot be chunked!
5960
rechunked_data = data.chunk(chunking)

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "openeo-processes-dask"
3-
version = "2023.10.6"
3+
version = "2023.10.7"
44
description = "Python implementations of many OpenEO processes, dask-friendly by default."
55
authors = ["Lukas Weidenholzer <lukas.weidenholzer@eodc.eu>", "Sean Hoyal <sean.hoyal@eodc.eu>", "Valentina Hutter <valentina.hutter@eodc.eu>"]
66
maintainers = ["EODC Staff <support@eodc.eu>"]

0 commit comments

Comments
 (0)