Re: [Numpy-discussion] ANN: Numpy 1.6.0 release candidate 1

2011-05-02 Thread Michael Droettboom
I've found a few reference counting bugs running the regression tests under Valgrind. Pull request here: https://github.com/numpy/numpy/pull/79 Mike On 04/30/2011 04:19 PM, Ralf Gommers wrote: Hi, I am pleased to announce the availability of the first release candidate of NumPy 1.6.0. If

Re: [Numpy-discussion] Less dimensions than expected with record array

2011-05-02 Thread Christopher Barker
ndarray has 2 dimensions but record array has 1 dimensions This makes seemingly reasonable things, like using apply_along_axis() over a table of data with named columns, impossible: each row (record) is treated as one array element, so the structured array is only 1d. If you have

Re: [Numpy-discussion] ANN: Numpy 1.6.0 release candidate 1

2011-05-02 Thread Mark Wiebe
I applied everything, since they're all obviously bugs and the fixes look straightforward. -Mark On Mon, May 2, 2011 at 8:18 AM, Michael Droettboom md...@stsci.edu wrote: I've found a few reference counting bugs running the regression tests under Valgrind. Pull request here: