[Numpy-discussion] syntax error in scalartypes.inc.src

2009-03-10 Thread James Watson
In revision 6609, numpy fails to build on linux x86_64 due to an extra comma on line 779 of numpy/core/src/scalartypes.inc.src. ___ Numpy-discussion mailing list Numpy-discussion@scipy.org http://mail.scipy.org/mailman/listinfo/numpy-discussion

Re: [Numpy-discussion] numpy and python 2.6 on windows: please test

2009-03-03 Thread James Watson
I would appreciate if people would test building numpy (trunk); in particular since some issues are moderately complex and system dependent On Vista with VS2008, numpy rev r6535, I get the following behaviour: 1. Building and installing numpy on python 2.6.1 compiled in debug mode succeeds,

Re: [Numpy-discussion] numpy and python 2.6 on windows: please test

2009-03-03 Thread James Watson
Windows debug extensions have a suffix, d. If you don't install the debug version of numpy, you can't use it with debug Python. Ah, thank you. Sorry for the newb question: how do you install the debug version (for msvc)? ___ Numpy-discussion mailing

Re: [Numpy-discussion] numpy and python 2.6 on windows: please test

2009-03-03 Thread James Watson
Windows debug extensions have a suffix, d. If you don't install the debug version of numpy, you can't use it with debug Python. *red face* forgot about --debug... Yes, this has actually nothing to do with python 2.6. I noticed the crash, thought naively it would be easy to fix, but it is

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-04 Thread James Watson
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), e.g. I

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