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

[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 1.5?

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 : > 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 Numpy-discussion@scipy.org ht

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

2009-03-02 Thread Stéfan van der Walt
2009/2/10 Scott Sinclair : >> 2009/2/10 James Watson : >> 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

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-02-10 Thread Scott Sinclair
> 2009/2/10 James Watson : > 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 the moment. This

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

2009-02-10 Thread James Watson
I'm taking Chuck and Bruce's suggestions and making sure that the changes are compatible with Python 2.4 and 2.6. 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: Connectio

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 > wrote: > > Hi Ondrej, > > To get 2to3 to run without warnings, the following files require > minor changes: > - numpy/distutils/fcompiler/intel.py > - numpy/distutils/misc

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 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 > - numpy/f2py/crackfortran.py >

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

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

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 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), e.g. I have sever

[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. ___