File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,14 @@ New Features
17
17
Breaking changes
18
18
~~~~~~~~~~~~~~~~
19
19
20
+ - Xarray's default engine for reading/writing netCDF files has been reverted to
21
+ prefer netCDF4, which was the default before v2025.09.1. This change
22
+ had larger implications for the ecosystem than we anticipated. We are still
23
+ considering changing the default in the future, but will be a bit more careful
24
+ about the implications. See :issue: `10657 ` and linked issues for discussion.
25
+ The behavior can still be customized, e.g., with
26
+ ``xr.set_options(netcdf_engine_order=['h5netcdf', 'netcdf4', 'scipy']) ``.
27
+ By `Stephan Hoyer <https://github.com/shoyer >`_.
20
28
21
29
Deprecations
22
30
~~~~~~~~~~~~
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ class T_Options(TypedDict):
59
59
enable_cftimeindex : bool
60
60
file_cache_maxsize : int
61
61
keep_attrs : Literal ["default" ] | bool
62
- netcdf_engine_order : Sequence [Literal ["h5netcdf " , "scipy " , "netcdf4 " ]]
62
+ netcdf_engine_order : Sequence [Literal ["netcdf4 " , "h5netcdf " , "scipy " ]]
63
63
warn_for_unclosed_files : bool
64
64
use_bottleneck : bool
65
65
use_flox : bool
You can’t perform that action at this time.
0 commit comments