From 11049f568e09c9f0c56c9fb453d9ae9089f5fa5b Mon Sep 17 00:00:00 2001 From: Maximilian Roos <5635139+max-sixty@users.noreply.github.com> Date: Tue, 29 Oct 2019 17:36:35 -0400 Subject: [PATCH] Cleanup whatsnew (#3462) --- doc/whats-new.rst | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/doc/whats-new.rst b/doc/whats-new.rst index 6bcf4b61436..3ab8618a85a 100644 --- a/doc/whats-new.rst +++ b/doc/whats-new.rst @@ -37,22 +37,11 @@ New Features - Changed `xr.ALL_DIMS` to equal python's `Ellipsis` (`...`), and changed internal usages to use `...` directly. As before, you can use this to instruct a `groupby` operation to reduce over all dimensions. While we have no plans to remove `xr.ALL_DIMS`, we suggest - using `...`. + using `...`. (:pull:`3418`) By `Maximilian Roos `_ - :py:func:`~xarray.dot`, and :py:func:`~xarray.DataArray.dot` now support the `dims=...` option to sum over the union of dimensions of all input arrays (:issue:`3423`) by `Mathias Hauser `_. -- Added integration tests against `pint `_. - (:pull:`3238`) by `Justus Magin `_. - - .. note:: - - At the moment of writing, these tests *as well as the ability to use pint in general* - require `a highly experimental version of pint - `_ (install with - ``pip install git+https://github.com/andrewgsavage/pint.git@refs/pull/6/head)``. - Even with it, interaction with non-numpy array libraries, e.g. dask or sparse, is broken. - - Added new :py:meth:`Dataset._repr_html_` and :py:meth:`DataArray._repr_html_` to improve representation of objects in jupyter. By default this feature is turned off for now. Enable it with :py:meth:`xarray.set_options(display_style="html")`. @@ -84,6 +73,17 @@ Documentation Internal Changes ~~~~~~~~~~~~~~~~ +- Added integration tests against `pint `_. + (:pull:`3238`) by `Justus Magin `_. + + .. note:: + + At the moment of writing, these tests *as well as the ability to use pint in general* + require `a highly experimental version of pint + `_ (install with + ``pip install git+https://github.com/andrewgsavage/pint.git@refs/pull/6/head)``. + Even with it, interaction with non-numpy array libraries, e.g. dask or sparse, is broken. + - Use Python 3.6 idioms throughout the codebase. (:pull:3419) By `Maximilian Roos `_