Skip to content

Commit

Permalink
small bug fix (#283)
Browse files Browse the repository at this point in the history
* small bug fix

* dask distributed
  • Loading branch information
ValentinaHutter authored Oct 1, 2024
1 parent 9522ef7 commit aad2855
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"add_dimension",
"rename_dimension",
"rename_labels",
"trim_cube",
]


Expand Down
7 changes: 7 additions & 0 deletions openeo_processes_dask/process_implementations/text.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
from typing import Any, Optional

__all__ = [
"text_begins",
"text_contains",
"text_concat",
"text_ends",
]


def text_begins(data: str, pattern: str, case_sensitive: Optional[bool] = True) -> str:
if data:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ python = ">=3.10,<3.12"
geopandas = { version = ">=0.11.1,<1", optional = true }
pandas = { version = ">=2.0.0", optional = true }
xarray = { version = ">=2022.11.0,<=2024.3.0", optional = true }
dask = {extras = ["array", "dataframe"], version = ">=2023.4.0", optional = true}
dask = {extras = ["array", "dataframe", "distributed"], version = ">=2023.4.0", optional = true}
rasterio = { version = "^1.3.4", optional = true }
dask-geopandas = { version = ">=0.2.0,<1", optional = true }
xgboost = { version = ">=1.5.1", optional = true }
Expand Down

0 comments on commit aad2855

Please sign in to comment.