Skip to content

Commit

Permalink
reverse experimental chunking change (#178)
Browse files Browse the repository at this point in the history
Co-authored-by: Gerald Walter Irsiegler <gerald@Irsiegler-P14s>
  • Loading branch information
GeraldIr and Gerald Walter Irsiegler authored Oct 12, 2023
1 parent a0edb50 commit 597d100
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ def fit_curve(
# so we do this to generate names locally
parameters = {f"param_{i}": v for i, v in enumerate(parameters)}

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

# The dimension along which to fit the curves cannot be chunked!
rechunked_data = data.chunk(chunking)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "openeo-processes-dask"
version = "2023.10.6"
version = "2023.10.7"
description = "Python implementations of many OpenEO processes, dask-friendly by default."
authors = ["Lukas Weidenholzer <lukas.weidenholzer@eodc.eu>", "Sean Hoyal <sean.hoyal@eodc.eu>", "Valentina Hutter <valentina.hutter@eodc.eu>"]
maintainers = ["EODC Staff <support@eodc.eu>"]
Expand Down

0 comments on commit 597d100

Please sign in to comment.