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
>> 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
> 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
> 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,
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
<
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
i 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
&g
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.
___