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
1717Breaking changes
1818~~~~~~~~~~~~~~~~
1919
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 >`_.
2028
2129Deprecations
2230~~~~~~~~~~~~
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ class T_Options(TypedDict):
5959 enable_cftimeindex : bool
6060 file_cache_maxsize : int
6161 keep_attrs : Literal ["default" ] | bool
62- netcdf_engine_order : Sequence [Literal ["h5netcdf " , "scipy " , "netcdf4 " ]]
62+ netcdf_engine_order : Sequence [Literal ["netcdf4 " , "h5netcdf " , "scipy " ]]
6363 warn_for_unclosed_files : bool
6464 use_bottleneck : bool
6565 use_flox : bool
You can’t perform that action at this time.
0 commit comments