Skip to content

Fix imports again #565

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Mar 18, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 21 additions & 2 deletions cf_xarray/accessor.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,27 @@
from xarray import DataArray, Dataset
from xarray.core.groupby import GroupBy
from xarray.core.resample import Resample
from xarray.core.rolling import Coarsen, Rolling
from xarray.core.weighted import Weighted

try:
from xarray.core.rolling import ( # type:ignore[import-not-found,no-redef,unused-ignore]
Coarsen,
Rolling,
)
except ImportError:
from xarray.computation.rolling import ( # type:ignore[import-not-found,no-redef,unused-ignore]
Coarsen,
Rolling,
)

try:
from xarray.core.weighted import (
Weighted, # type:ignore[import-not-found,no-redef,unused-ignore]
)
except ImportError:
from xarray.computation.weighted import ( # type:ignore[import-not-found,no-redef,unused-ignore]
Weighted,
)


from . import parametric, sgrid
from .criteria import (
Expand Down
Loading