[Numpy-discussion] Problem with numpy and distutils on OS X

2008-05-09 Thread Michele Vallisneri
I'm writing a standard distutils setup.py to compile a Python C extension on OS X 10.4, and I need to specify a few special compiler options to enable vector CPU extension (altivec and SSE on i686 and PPC respectively). This compromises the generation of universal binaries, because these

Re: [Numpy-discussion] Problem with numpy and distutils on OS X

2008-05-09 Thread Robert Kern
On Fri, May 9, 2008 at 11:17 AM, Michele Vallisneri [EMAIL PROTECTED] wrote: I'm writing a standard distutils setup.py to compile a Python C extension on OS X 10.4, and I need to specify a few special compiler options to enable vector CPU extension (altivec and SSE on i686 and PPC

Re: [Numpy-discussion] Problem with numpy and distutils on OS X

2008-05-09 Thread vallis . 35530053
Thanks, Robert. Indeed, numpy 1.0.4 does some monkeypatching (see the transcript below). Interestingly, 1.0.3 did not, so I'm hoping that 1.0.5 may not also. (I'd rather stay with released version, since I distribute my code to colleagues, and cannot impose too many conditions on them.) In the

Re: [Numpy-discussion] Problem with numpy and distutils on OS X

2008-05-09 Thread Robert Kern
On Fri, May 9, 2008 at 2:32 PM, [EMAIL PROTECTED] wrote: Thanks, Robert. Indeed, numpy 1.0.4 does some monkeypatching (see the transcript below). Interestingly, 1.0.3 did not, so I'm hoping that 1.0.5 may not also. (I'd rather stay with released version, since I distribute my code to