[Numpy-discussion] ANN: Numpy 1.8.0 beta 1 release

Christoph Gohlke cgohlke at uci.edu
Thu Sep 5 01:08:32 EDT 2013


On 9/1/2013 9:54 AM, Charles R Harris wrote:
> Hi all,
>
> I'm happy to announce the first beta release of Numpy 1.8.0. Please try
> this beta and report any issues on the numpy-dev mailing list.
>
> Source tarballs and release notes can be found at
> https://sourceforge.net/projects/numpy/files/NumPy/1.8.0b1/. The Windows
> and OS X installers will follow when the infrastructure issues are dealt
> with.
>
> Chuck
>

Hello,

is this IndexError intentional in numpy 1.8? Matplotlib 1.3 fails some 
tests because of this.

>>> numpy.zeros(1)[[0], :]
Traceback (most recent call last):
   File "<stdin>", line 1, in <module>
IndexError: too many indices

With numpy 1.7:
>>> numpy.zeros(1)[[0], :]
array([ 0.])

Christoph



More information about the NumPy-Discussion mailing list