[Numpy-discussion] Porting numpy to python 3.x, status update

2010-02-05 Thread Rohit Garg
Hi all, This says that planning for migration to python 3 has begun. http://blog.jarrodmillman.com/2009/11/numpy-14-coming-soon.html It has been a month since 1.4 was released. Is there a status page somewhere where one can checkup on progress for the same? Is Python 3.x support planned for

Re: [Numpy-discussion] Porting numpy to python 3.x, status update

2010-02-05 Thread Travis Oliphant
On Feb 6, 2010, at 1:08 AM, Rohit Garg wrote: Hi all, This says that planning for migration to python 3 has begun. More than planning. Actually Pauli (and Chuck I believe) have made quite a bit of progress. Pauli just posted his roadmap of what needs to be finished. It is difficult

Re: [Numpy-discussion] porting NumPy to Python 3

2009-03-02 Thread James Watson
The following are very simple changes that allow the 2to3 program to run on numpy without warnings. Can someone check / commit? numpy/linalg/lapack_lite/make_lite.py: 144c144 if 'BLAS' in filename --- if 'BLAS' in filename: numpy/distutils/misc_util.py: 957c957,958

Re: [Numpy-discussion] porting NumPy to Python 3

2009-03-02 Thread Stéfan van der Walt
2009/2/10 Scott Sinclair scott.sinclair...@gmail.com: 2009/2/10 James Watson watson@gmail.com: I want to make sure diffs are against latest code, but keep getting this svn error: svn update svn: OPTIONS of 'http://scipy.org/svn/numpy/trunk': Could not read status line: Connection reset

Re: [Numpy-discussion] porting NumPy to Python 3

2009-03-02 Thread Stéfan van der Walt
Thanks, James. Applied in r6535. 2009/3/2 James Watson watson@gmail.com: The following are very simple changes that allow the 2to3 program to run on numpy without warnings.  Can someone check / commit? ___ Numpy-discussion mailing list

Re: [Numpy-discussion] porting NumPy to Python 3

2009-02-10 Thread Scott Sinclair
2009/2/10 James Watson watson@gmail.com: I want to make sure diffs are against latest code, but keep getting this svn error: svn update svn: OPTIONS of 'http://scipy.org/svn/numpy/trunk': Could not read status line: Connection reset by peer (http://scipy.org) There is some problem at

Re: [Numpy-discussion] porting NumPy to Python 3

2009-02-04 Thread James Watson
:03:15 -0800 From: Ondrej Certik ond...@certik.cz Subject: Re: [Numpy-discussion] porting NumPy to Python 3 To: Discussion of Numerical Python numpy-discussion@scipy.org Message-ID: 85b5c3130902030103w69180a6bm4143050b4b82b...@mail.gmail.com Content-Type: text/plain; charset=UTF-8 Hi

Re: [Numpy-discussion] porting NumPy to Python 3

2009-02-04 Thread Charles R Harris
On Wed, Feb 4, 2009 at 10:02 AM, James Watson watson@gmail.com wrote: Hi Ondrej, To get 2to3 to run without warnings, the following files require minor changes: - numpy/distutils/fcompiler/intel.py - numpy/distutils/misc_util.py - numpy/distutils/command/build_src.py -

Re: [Numpy-discussion] porting NumPy to Python 3

2009-02-04 Thread Bruce Southey
Charles R Harris wrote: On Wed, Feb 4, 2009 at 10:02 AM, James Watson watson@gmail.com mailto:watson@gmail.com wrote: Hi Ondrej, To get 2to3 to run without warnings, the following files require minor changes: - numpy/distutils/fcompiler/intel.py -

Re: [Numpy-discussion] porting NumPy to Python 3

2009-02-03 Thread Ondrej Certik
Hi James, On Thu, Jan 29, 2009 at 2:11 AM, James Watson watson@gmail.com wrote: Hi, I am interested in contributing to the port of NumPy to Python 3. Who I should coordinate effort with? I have started at the Python end of the problem (as opposed to http://www.scipy.org/Python3k),

[Numpy-discussion] porting NumPy to Python 3

2009-01-29 Thread James Watson
Hi, I am interested in contributing to the port of NumPy to Python 3. Who I should coordinate effort with? I have started at the Python end of the problem (as opposed to http://www.scipy.org/Python3k), e.g. I have several patches to get 2to3 to work on NumPy's Python source code. James.