Re: [Numpy-discussion] Crashes and test failures

2012-03-22 Thread Gael Varoquaux
On Thu, Mar 22, 2012 at 06:24:13PM -0600, Charles R Harris wrote: >Since you are running on Ubuntu, it's probably a good idea to >python setup.py install --user >which will put everything in .local and avoid the mess with dist-packages >and site-packages. Maybe you do that already

Re: [Numpy-discussion] Crashes and test failures

2012-03-22 Thread Charles R Harris
On Thu, Mar 22, 2012 at 11:24 AM, Gael Varoquaux < gael.varoqu...@normalesup.org> wrote: > On Thu, Mar 22, 2012 at 11:20:10AM -0600, Charles R Harris wrote: > > This one was fixed a few days ago, so you aren't running the latest. > > Indeed, but if I run the latest, any operation on arrays segfaul

Re: [Numpy-discussion] Crashes and test failures

2012-03-22 Thread Gael Varoquaux
On Thu, Mar 22, 2012 at 11:20:10AM -0600, Charles R Harris wrote: > This one was fixed a few days ago, so you aren't running the latest. Indeed, but if I run the latest, any operation on arrays segfaults on me, so I am running 0.6.1. But you are saying that it's known and fixed. Great! > That mig

Re: [Numpy-discussion] Crashes and test failures

2012-03-22 Thread Charles R Harris
On Thu, Mar 22, 2012 at 11:07 AM, Gael Varoquaux < gael.varoqu...@normalesup.org> wrote: > > Hi list, > > I just got a new laptop, running Ubuntu 11.10 64bit on an Intel i7. > I am a bit intriged by the test results of numpy on this box. > > First of all, master builds and imports OK, but the simp

[Numpy-discussion] Crashes and test failures

2012-03-22 Thread Gael Varoquaux
Hi list, I just got a new laptop, running Ubuntu 11.10 64bit on an Intel i7. I am a bit intriged by the test results of numpy on this box. First of all, master builds and imports OK, but the simplest test case crashes with a segfault: import numpy as np a = np.ones(10, dtype=np.bool)