Re: [Numpy-discussion] lots of warnings with python3

2013-08-28 Thread Charles R Harris
On Wed, Aug 28, 2013 at 11:36 AM, Charles R Harris wrote: > On Wed, Aug 28, 2013 at 10:03 AM, Charles R Harris > wrote: >> >> >> >> On Wed, Aug 28, 2013 at 9:32 AM, Neal Becker wrote: >>> >>> I tried running python2 -3 on some code, and found numpy >>> produces a lot of warnings. >>> >>> Many li

Re: [Numpy-discussion] lots of warnings with python3

2013-08-28 Thread Charles R Harris
On Wed, Aug 28, 2013 at 10:03 AM, Charles R Harris wrote: > > > > On Wed, Aug 28, 2013 at 9:32 AM, Neal Becker wrote: >> >> I tried running python2 -3 on some code, and found numpy >> produces a lot of warnings. >> >> Many like: >> python -3 -c 'import numpy' >> ... >> /usr/lib64/python2.7/site-p

Re: [Numpy-discussion] lots of warnings with python3

2013-08-28 Thread Charles R Harris
On Wed, Aug 28, 2013 at 9:32 AM, Neal Becker wrote: > I tried running python2 -3 on some code, and found numpy > produces a lot of warnings. > > Many like: > python -3 -c 'import numpy' > ... > /usr/lib64/python2.7/site-packages/numpy/lib/polynomial.py:928: > DeprecationWarning: Overriding __eq__

Re: [Numpy-discussion] lots of warnings with python3

2013-08-28 Thread Nathaniel Smith
On Wed, Aug 28, 2013 at 4:32 PM, Neal Becker wrote: > I tried running python2 -3 on some code, and found numpy > produces a lot of warnings. > > Many like: > python -3 -c 'import numpy' > ... > /usr/lib64/python2.7/site-packages/numpy/lib/polynomial.py:928: > DeprecationWarning: Overriding __eq__

[Numpy-discussion] lots of warnings with python3

2013-08-28 Thread Neal Becker
I tried running python2 -3 on some code, and found numpy produces a lot of warnings. Many like: python -3 -c 'import numpy' ... /usr/lib64/python2.7/site-packages/numpy/lib/polynomial.py:928: DeprecationWarning: Overriding __eq__ blocks inheritance of __hash__ in 3.x But also: /usr/lib64/python2

[Numpy-discussion] Use numpy.distutils to build fortran with BLAS

2013-08-28 Thread Matt Hoffman
I have some fortran code that I would like to build and make accessible from python which needs to call a few BLAS routines. Building it in a one-off manner is not a problem, but I can't seem to find a good way to distribute it in a way that just works. So really I'm wondering if there is a "corre