This repository was archived by the owner on Oct 24, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1
- from xarray .testing import ensure_warnings
1
+ from xarray .testing . assertions import ensure_warnings
2
2
3
3
from .datatree import DataTree
4
4
from .formatting import diff_tree_repr
Original file line number Diff line number Diff line change @@ -26,6 +26,10 @@ New Features
26
26
Breaking changes
27
27
~~~~~~~~~~~~~~~~
28
28
29
+ - Minimum required version of xarray is now 2023.12.0, i.e. the latest version.
30
+ This is required to prevent recent changes to xarray's internals from breaking datatree.
31
+ (:issue: `293 `, :pull: `294 `)
32
+ By `Tom Nicholas <https://github.com/TomNicholas >`_.
29
33
- Change default write mode of :py:meth: `DataTree.to_zarr ` to ``'w-' `` to match ``xarray ``
30
34
default and prevent accidental directory overwrites. (:issue: `274 `, :pull: `275 `)
31
35
By `Sam Levang <https://github.com/slevang >`_.
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ classifiers = [
19
19
]
20
20
requires-python = " >=3.9"
21
21
dependencies = [
22
- " xarray >=2022.6 .0" ,
22
+ " xarray >=2023.12 .0" ,
23
23
" packaging" ,
24
24
]
25
25
dynamic = [" version" ]
You can’t perform that action at this time.
0 commit comments