From d883ef03925fdd6f3b03cb5f84476a6791d59033 Mon Sep 17 00:00:00 2001 From: jakirkham Date: Fri, 23 Mar 2018 22:26:50 -0400 Subject: [PATCH] Note squeeze's optional axis arg in the changelog (#3321) Mentions that the Dask Array `squeeze` method now takes the optional `axis` argument should users wish to squeeze out specific axis/axes. Useful for duck typing. [skip ci] --- docs/source/changelog.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 8091c83a830..2ff79fae6da 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -34,6 +34,7 @@ Array - Add ``broadcast_arrays`` for Dask Arrays (:pr:`3217`) `John A Kirkham`_ - Add ``bitwise_*`` ufuncs (:pr:`3219`) `John A Kirkham`_ +- Add optional ``axis`` argument to ``squeeze`` (:pr:`3261`) `John A Kirkham`_ - Validate inputs to atop (:pr:`3307`) `Matthew Rocklin`_ - Avoid calls to astype in concatenate if all parts have the same dtype (:pr:`3301`) `Martin Durant`_