On Mon, 13 Jun 2011 11:08:18 -0500, Bruce Southey wrote: [clip] > OSError: > /usr/local/lib/python3.2/site-packages/numpy/core/multiarray.pyd: cannot > open shared object file: No such file or directory
I think that's a result of Python 3.2 changing the extension module file naming scheme (IIRC to a versioned one). The '.pyd' ending and its Unix counterpart are IIRC hardcoded to the failing test, or some support code in Numpy. Clearly, they should instead ask Python how it names the extensions modules. This information may be available somewhere in the `sys` module. _______________________________________________ NumPy-Discussion mailing list [email protected] http://mail.scipy.org/mailman/listinfo/numpy-discussion
