Skip to content

Commit

Permalink
fix: import experimental processes (#163)
Browse files Browse the repository at this point in the history
Fix import experimental processes
  • Loading branch information
clausmichele authored Oct 6, 2023
1 parent 19af150 commit 6032ac9
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions openeo_processes_dask/process_implementations/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@
"Did not load machine learning processes due to missing dependencies: Install them like this: `pip install openeo-processes-dask[implementations, ml]`"
)

try:
from .experimental import *
except ImportError as e:
logger.warning(
"Did not experimental processes due to missing dependencies: Install them like this: `pip install openeo-processes-dask[implementations, experimental]`"
)

import rioxarray as rio # Required for the .rio accessor on xarrays.

import openeo_processes_dask.process_implementations.cubes._xr_interop

0 comments on commit 6032ac9

Please sign in to comment.