diff --git a/doc/installing.rst b/doc/installing.rst index 083ac6c450a..8054a601870 100644 --- a/doc/installing.rst +++ b/doc/installing.rst @@ -45,8 +45,6 @@ For accelerating xarray - `bottleneck `__: speeds up NaN-skipping and rolling window aggregations by a large factor (1.1 or later) -- `cyordereddict `__: speeds up most - internal operations with xarray data structures (for python versions < 3.5) For parallel computing ~~~~~~~~~~~~~~~~~~~~~~ diff --git a/doc/whats-new.rst b/doc/whats-new.rst index fb738f04c6d..46b8af30e1e 100644 --- a/doc/whats-new.rst +++ b/doc/whats-new.rst @@ -28,6 +28,8 @@ Breaking changes `DataArray` are deprecated and will be removed in a future release. (:issue:`1188`) By `Maximilian Roos `_. +- `cyordereddict` is no longer used as an optional dependency (:issue:`2744`). + By `Joe Hamman `_. Enhancements ~~~~~~~~~~~~ diff --git a/xarray/util/print_versions.py b/xarray/util/print_versions.py index 87eb7399e69..cb624155634 100755 --- a/xarray/util/print_versions.py +++ b/xarray/util/print_versions.py @@ -102,7 +102,6 @@ def show_versions(as_json=False): ("cfgrib", lambda mod: mod.__version__), ("iris", lambda mod: mod.__version__), ("bottleneck", lambda mod: mod.__version__), - ("cyordereddict", lambda mod: mod.__version__), ("dask", lambda mod: mod.__version__), ("distributed", lambda mod: mod.__version__), ("matplotlib", lambda mod: mod.__version__),