[NumPy-Tickets] [NumPy] #1365: numpy build on interix
NumPy Trac
numpy-tickets@scipy....
Tue Nov 30 10:03:31 CST 2010
#1365: numpy build on interix
-----------------------------+----------------------------------------------
Reporter: mduft | Owner: cdavid
Type: enhancement | Status: needs_info
Priority: normal | Milestone:
Component: numpy.distutils | Version: 1.4.0
Keywords: |
-----------------------------+----------------------------------------------
Changes (by rgommers):
* status: new => needs_info
Comment:
This is a simple patch but hard to test without an Interix system at hand.
How do you know complex support is broken? Do you have a link to mailing
list messages or a description of the exact issue?
A more correct way to disable the complex check would be
{{{
try:
if os.uname()[0] == "Interix":
warnings.warn("Disabling broken complex support. See #1365")
return priv, pub
except:
# os.uname not available on all platforms. blanket except ugly but
safe
pass
}}}
--
Ticket URL: <http://projects.scipy.org/numpy/ticket/1365#comment:1>
NumPy <http://projects.scipy.org/numpy>
My example project
More information about the NumPy-Tickets
mailing list