[Numpy-discussion] Triage-review and Triaged labels & triage meeting

2019-12-02 Thread Ralf Gommers
Hi all, We now have "Triage-review" and "Triaged" labels, to go with the bi-weekly meeting we will start with this week. For those that missed it in the notes from the sprint: the idea is to change from the weekly "community call" meetings to: 1. a bi-weekly community call with higher-level topic

Re: [Numpy-discussion] [API] (minor change) Allow multiple axes in `expand_dims`

2019-12-02 Thread Stephan Hoyer
This looks good to me! On Mon, Dec 2, 2019 at 11:13 AM Sebastian Berg wrote: > Hi all, > > Pull request 14051: > > https://github.com/numpy/numpy/pull/14051 > > means that `np.expand_dims` now accepts multiple axes in the `axis` > argument. As before, the axis signal where a new axis is in the o

[Numpy-discussion] [API] (minor change) Allow multiple axes in `expand_dims`

2019-12-02 Thread Sebastian Berg
Hi all, Pull request 14051: https://github.com/numpy/numpy/pull/14051 means that `np.expand_dims` now accepts multiple axes in the `axis` argument. As before, the axis signal where a new axis is in the output array. From the new tests: a = np.empty((3, 3, 3)) np.expand_dims(a, axis=(0, 1, 2)).s