[Numpy-discussion] numpy failures for rc1

2008-09-02 Thread Jarrod Millman
I was hoping to tag the 1.2.0rc1 soon, but I noticed that a couple of failures on the buildbots: http://buildbot.scipy.org/builders/Windows_XP_x86_64_MSVC/builds/701/steps/shell_2/logs/stdio http://buildbot.scipy.org/builders/FreeBSD_64/builds/621/steps/shell_2/logs/stdio Are there any

Re: [Numpy-discussion] numpy failures for rc1

2008-09-02 Thread David Cournapeau
Jarrod Millman wrote: I was hoping to tag the 1.2.0rc1 soon, but I noticed that a couple of failures on the buildbots: http://buildbot.scipy.org/builders/Windows_XP_x86_64_MSVC/builds/701/steps/shell_2/logs/stdio

Re: [Numpy-discussion] Problem building NumPy with information from ~/.numpy-site.cfg

2008-09-02 Thread Höllmann
David Cournapeau [EMAIL PROTECTED] writes: On Mon, 2008-09-01 at 11:26 +0200, Berthold Höllmann wrote: I am trying to build numpy 1.1.1 with ATLAS support. the f77blas library I am trying to use is named f77blas_gfortran to distinguish it From builds for other compilers. First from the

Re: [Numpy-discussion] numpy failures for rc1

2008-09-02 Thread David Cournapeau
David Cournapeau wrote: The FreeBSD one is a bogus test (again, my fault), which should be trivial to fix. Fixed in r5741 cheers, David ___ Numpy-discussion mailing list Numpy-discussion@scipy.org

Re: [Numpy-discussion] numpy failures for rc1

2008-09-02 Thread Matthieu Brucher
I think there is a thread on that matter on the list, and it seems to be fixed now ;) Cheers, Matthieu 2008/9/2, David Cournapeau [EMAIL PROTECTED]: Jarrod Millman wrote: I was hoping to tag the 1.2.0rc1 soon, but I noticed that a couple of failures on the buildbots:

Re: [Numpy-discussion] numpy failures for rc1

2008-09-02 Thread David Cournapeau
Jarrod Millman wrote: I was hoping to tag the 1.2.0rc1 soon, but I noticed that a couple of failures on the buildbots: http://buildbot.scipy.org/builders/Windows_XP_x86_64_MSVC/builds/701/steps/shell_2/logs/stdio

Re: [Numpy-discussion] Problem building NumPy with information from ~/.numpy-site.cfg

2008-09-02 Thread Charles R Harris
On Tue, Sep 2, 2008 at 12:56 AM, Berthold Höllmann [EMAIL PROTECTED] wrote: David Cournapeau [EMAIL PROTECTED] writes: On Mon, 2008-09-01 at 11:26 +0200, Berthold Höllmann wrote: I am trying to build numpy 1.1.1 with ATLAS support. the f77blas library I am trying to use is named

[Numpy-discussion] NumPy 1.2.0rc1 to be tagged in 5 hours

2008-09-02 Thread Jarrod Millman
Hello, I am planning to tag 1.2.0rc1 in 5 hours. The tests are passing on the buildbots and I don't know of anything else that needs to be fixed before making the final 1.2.0 release, which will come out after the release candidate has been more widely tested. If you know of any release

[Numpy-discussion] numpy 1.1.1 fails because of missing md5

2008-09-02 Thread Charles Doutriaux
Joseph, Ok all failed because numpy couldn't build... It's looking for md5 on my machine i type: whereis md5 md5: /usr/include/md5.h /usr/share/man/man1/md5.1ssl.gz /usr/share/man/man3/md5.3ssl.gz I'm ccing the numpy discussion list on this. The numpy we're trying to build is 1.1.1 I'm

Re: [Numpy-discussion] numpy 1.1.1 fails because of missing md5

2008-09-02 Thread Robert Kern
On Tue, Sep 2, 2008 at 16:40, Charles Doutriaux [EMAIL PROTECTED] wrote: Joseph, Ok all failed because numpy couldn't build... It's looking for md5 That's part of the standard library. Please check your Python installation. -- Robert Kern I have come to believe that the whole world is an

[Numpy-discussion] distance matrix and (weighted) p-norm

2008-09-02 Thread Emanuele Olivetti
Hi, I'm trying to compute the distance matrix (weighted p-norm [*]) between two sets of vectors (data1 and data2). Example: import numpy as N p = 3.0 data1 = N.random.randn(100,20) data2 = N.random.randn(80,20) weight = N.random.rand(20) distance_matrix = N.zeros((data1.shape[0],data2.shape[0]))

Re: [Numpy-discussion] distance matrix and (weighted) p-norm

2008-09-02 Thread David Cournapeau
Emanuele Olivetti wrote: Hi, I'm trying to compute the distance matrix (weighted p-norm [*]) between two sets of vectors (data1 and data2). Example: You may want to look at scipy.cluster.distance, which has a bunch of distance matrix implementation. I believe most of them have optional