[NumPy-Tickets] [NumPy] #1749: SOABI-problem with external libraries and python3.2
NumPy Trac
numpy-tickets@scipy....
Tue Mar 1 19:17:07 CST 2011
#1749: SOABI-problem with external libraries and python3.2
-----------------------------+----------------------------------------------
Reporter: don.fanucci | Owner: cdavid
Type: defect | Status: new
Priority: normal | Milestone: 1.6.0
Component: numpy.distutils | Version: 1.5.1
Keywords: |
-----------------------------+----------------------------------------------
Comment(by rgommers):
What is your OS and how did you install numpy?
It seems the PEP is not completely implemented, on OS X 10.6 I get:
{{{
>>> sysconfig.get_config_var('SO')
'.so'
>>> sysconfig.get_config_var('SOABI')
'cpython-32m'
}}}
Which is actually correct, since the .so files on my system also do not
have {{{'cpython-32m'}}} prepended. PEP 3147 (the same for .pyc files) is
implemented however. What do you get for the above two statements and what
do you file names look like?
PEP 3149 claims that if the file names are altered, this should still give
the correct result:
{{{
>>> sysconfig.get_config_var('SO')
'.cpython-32mu.so'
}}}
So your patch should not be necessary.
--
Ticket URL: <http://projects.scipy.org/numpy/ticket/1749#comment:2>
NumPy <http://projects.scipy.org/numpy>
My example project
More information about the NumPy-Tickets
mailing list