Re: [Numpy-discussion] ANN: 1.8.0b2 release.

2013-09-14 Thread Charles R Harris
On Sat, Sep 14, 2013 at 12:12 AM, Christoph Gohlke wrote: > On 9/13/2013 7:10 PM, Charles R Harris wrote: > > Hi Christolph, > > > > Could you debug this a bit? > > > > ERROR: test_record_no_hash (test_multiarray.TestRecord) > >

Re: [Numpy-discussion] ANN: 1.8.0b2 release.

2013-09-14 Thread Pauli Virtanen
14.09.2013 15:15, Christian K. kirjoitti: [clip] > FAIL: test_mode_raw (test_linalg.TestQR) > FAIL: test_linalg.test_xerbla [clip] > Should I use another compiler? Thanks. Both of the above are known issues on OSX, with known fixes (I think fixed in master branch, not sure if backported to 1.8.x).

Re: [Numpy-discussion] ANN: 1.8.0b2 release.

2013-09-14 Thread Christian K.
Am 08.09.13 16:14, schrieb Charles R Harris: > Hi all, > > I'm happy to announce the second beta release of Numpy 1.8.0. This > release should solve the Windows problems encountered in the first beta. > Many thanks to Christolph Gohlke and Julian Taylor for their hard work > in getting those issues

Re: [Numpy-discussion] ANN: 1.8.0b2 release.

2013-09-13 Thread Christoph Gohlke
On 9/13/2013 7:10 PM, Charles R Harris wrote: > Hi Christolph, > > Could you debug this a bit? > > ERROR: test_record_no_hash (test_multiarray.TestRecord) > -- > Traceback (most recent call last): > File > "X:\Python33\lib\site

Re: [Numpy-discussion] ANN: 1.8.0b2 release.

2013-09-13 Thread Charles R Harris
Hi Christolph, Could you debug this a bit? ERROR: test_record_no_hash (test_multiarray.TestRecord) -- Traceback (most recent call last): File "X:\Python33\lib\site- packages\numpy\core\tests\test_multiarray.py", line 2464, in

Re: [Numpy-discussion] ANN: 1.8.0b2 release.

2013-09-11 Thread Frédéric Bastien
Hi, I create an Ubuntu VM, cloned numpy and it compiled correctly in it. I tried in my normal development environment (instead of a virtualenv) with my old clone that is updated of numpy and it failed. So this isn't virtualenv. I created a new clone of numpy and it compiled correctly with my nor

Re: [Numpy-discussion] ANN: 1.8.0b2 release.

2013-09-09 Thread Frédéric Bastien
I tried it and retried and it still fail. This is in an virtualenv $git show commit c9b06111227f7a4ec213571f97e1b8d19b9c23f5 Merge: 73fbfb2 8edccea Author: Charles Harris Date: Sun Sep 8 19:47:21 2013 -0700 Merge pull request #3701 from cgohlke/patch-2 ENH: add support for Python 3.4

Re: [Numpy-discussion] ANN: 1.8.0b2 release.

2013-09-09 Thread Julian Taylor
try rebuilding everything from scratch. setup.py dependency handling is a bit dodgy with the generated files. On 09.09.2013 19:09, Frédéric Bastien wrote: > I don't have CFLAGS defined. But I have iothers env variable that point > to other python stuff like CPATH. > > But even in that case, I don

Re: [Numpy-discussion] ANN: 1.8.0b2 release.

2013-09-09 Thread Charles R Harris
On Mon, Sep 9, 2013 at 12:04 PM, Charles R Harris wrote: > > > > On Mon, Sep 9, 2013 at 11:09 AM, Frédéric Bastien wrote: > >> I don't have CFLAGS defined. But I have iothers env variable that point >> to other python stuff like CPATH. >> >> But even in that case, I don't understand how other pe

Re: [Numpy-discussion] ANN: 1.8.0b2 release.

2013-09-09 Thread Nathaniel Smith
On Mon, Sep 9, 2013 at 6:09 PM, Frédéric Bastien wrote: > I don't have CFLAGS defined. But I have iothers env variable that point to > other python stuff like CPATH. > > But even in that case, I don't understand how other people could have > compiled methods.c. The include aren't part of the env v

Re: [Numpy-discussion] ANN: 1.8.0b2 release.

2013-09-09 Thread Charles R Harris
On Mon, Sep 9, 2013 at 11:09 AM, Frédéric Bastien wrote: > I don't have CFLAGS defined. But I have iothers env variable that point to > other python stuff like CPATH. > > But even in that case, I don't understand how other people could have > compiled methods.c. The include aren't part of the env

Re: [Numpy-discussion] ANN: 1.8.0b2 release.

2013-09-09 Thread Frédéric Bastien
I don't have CFLAGS defined. But I have iothers env variable that point to other python stuff like CPATH. But even in that case, I don't understand how other people could have compiled methods.c. The include aren't part of the env variable, but in the file. Anyway, I think your PR is the good fix

Re: [Numpy-discussion] ANN: 1.8.0b2 release.

2013-09-09 Thread Charles R Harris
On Mon, Sep 9, 2013 at 9:33 AM, Frédéric Bastien wrote: > I tried it and retried and it still fail. This is in an virtualenv > > $git show > commit c9b06111227f7a4ec213571f97e1b8d19b9c23f5 > Merge: 73fbfb2 8edccea > Author: Charles Harris > Date: Sun Sep 8 19:47:21 2013 -0700 > > Merge pul

Re: [Numpy-discussion] ANN: 1.8.0b2 release.

2013-09-09 Thread Charles R Harris
On Mon, Sep 9, 2013 at 8:51 AM, Charles R Harris wrote: > > > > On Mon, Sep 9, 2013 at 7:46 AM, Frédéric Bastien wrote: > >> Hi, >> >> I checkout the dev version of numpy and it fail to compile with this >> error: >> >> creating >> build/temp.linux-x86_64-2.7/build/src.linux-x86_64-2.7/numpy/core

Re: [Numpy-discussion] ANN: 1.8.0b2 release.

2013-09-09 Thread Charles R Harris
On Mon, Sep 9, 2013 at 7:46 AM, Frédéric Bastien wrote: > Hi, > > I checkout the dev version of numpy and it fail to compile with this error: > > creating > build/temp.linux-x86_64-2.7/build/src.linux-x86_64-2.7/numpy/core/src/multiarray > > compile options: '-DHAVE_NPY_CONFIG_H=1 -Inumpy/core/in

Re: [Numpy-discussion] ANN: 1.8.0b2 release.

2013-09-09 Thread Frédéric Bastien
Hi, I checkout the dev version of numpy and it fail to compile with this error: creating build/temp.linux-x86_64-2.7/build/src.linux-x86_64-2.7/numpy/core/src/multiarray compile options: '-DHAVE_NPY_CONFIG_H=1 -Inumpy/core/include -Ibuild/src.linux-x86_64-2.7/numpy/core/include/numpy -Inumpy/cor

Re: [Numpy-discussion] ANN: 1.8.0b2 release.

2013-09-09 Thread Neal Becker
Charles R Harris wrote: > Hi all, > > I'm happy to announce the second beta release of Numpy 1.8.0. This release > should solve the Windows problems encountered in the first beta. Many > thanks to Christolph Gohlke and Julian Taylor for their hard work in > getting those issues settled. > > It w

Re: [Numpy-discussion] ANN: 1.8.0b2 release.

2013-09-08 Thread Charles R Harris
On Sun, Sep 8, 2013 at 6:36 PM, Charles R Harris wrote: > > > > On Sun, Sep 8, 2013 at 3:45 PM, Christoph Gohlke wrote: > >> On 9/8/2013 12:14 PM, Charles R Harris wrote: >> > Hi all, >> > >> > I'm happy to announce the second beta release of Numpy 1.8.0. This >> > release should solve the Window

Re: [Numpy-discussion] ANN: 1.8.0b2 release.

2013-09-08 Thread Charles R Harris
On Sun, Sep 8, 2013 at 3:45 PM, Christoph Gohlke wrote: > On 9/8/2013 12:14 PM, Charles R Harris wrote: > > Hi all, > > > > I'm happy to announce the second beta release of Numpy 1.8.0. This > > release should solve the Windows problems encountered in the first beta. > > Many thanks to Christolph

Re: [Numpy-discussion] ANN: 1.8.0b2 release.

2013-09-08 Thread Christoph Gohlke
On 9/8/2013 12:14 PM, Charles R Harris wrote: > Hi all, > > I'm happy to announce the second beta release of Numpy 1.8.0. This > release should solve the Windows problems encountered in the first beta. > Many thanks to Christolph Gohlke and Julian Taylor for their hard work > in getting those issue

[Numpy-discussion] ANN: 1.8.0b2 release.

2013-09-08 Thread Charles R Harris
Hi all, I'm happy to announce the second beta release of Numpy 1.8.0. This release should solve the Windows problems encountered in the first beta. Many thanks to Christolph Gohlke and Julian Taylor for their hard work in getting those issues settled. It would be good if folks running OS X could