You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: openeo_processes_dask/process_implementations/__init__.py
+7
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,13 @@
15
15
"Did not load machine learning processes due to missing dependencies: Install them like this: `pip install openeo-processes-dask[implementations, ml]`"
16
16
)
17
17
18
+
try:
19
+
from .experimentalimport*
20
+
exceptImportErrorase:
21
+
logger.warning(
22
+
"Did not experimental processes due to missing dependencies: Install them like this: `pip install openeo-processes-dask[implementations, experimental]`"
23
+
)
24
+
18
25
importrioxarrayasrio# Required for the .rio accessor on xarrays.
0 commit comments