From b78c42ebfdbdfcc95f444635ae4546c7890b320f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kai=20M=C3=BChlbauer?= Date: Wed, 18 Sep 2024 10:10:46 +0200 Subject: [PATCH] whats-new.rst entry, minor fix --- doc/whats-new.rst | 2 ++ xarray/tests/test_backends.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/whats-new.rst b/doc/whats-new.rst index 264c07f562b..6a4c953ffd3 100644 --- a/doc/whats-new.rst +++ b/doc/whats-new.rst @@ -32,6 +32,8 @@ New Features `Tom Nicholas `_. - Added zarr backends for :py:func:`open_groups` (:issue:`9430`, :pull:`9469`). By `Eni Awowale `_. +- Implement handling of complex numbers (netcdf4/h5netcdf) and enums (h5netcdf) (:issue:`9246`, :issue:`3297`, :pull:`9509`). + By `Kai Mühlbauer `_. Breaking changes ~~~~~~~~~~~~~~~~ diff --git a/xarray/tests/test_backends.py b/xarray/tests/test_backends.py index bb7406fd501..dcd9a9bc5c4 100644 --- a/xarray/tests/test_backends.py +++ b/xarray/tests/test_backends.py @@ -1858,7 +1858,7 @@ def test_encoding_enum__no_fill_value(self): fill_value=None, ) v[:] = 1 - with open_dataset(tmp_file, engine=self.engine) as original: + with open_dataset(tmp_file) as original: save_kwargs = {} # We don't expect any errors. # This is effectively a void context manager