Thanks for posting those wheels Matthew. I'm on a Mac (10.9.2) and I had trouble installing numpy from your wheel in a fresh virtualenv with the latests pip, setuptools, and wheel.
``` $pip install ~/Downloads/numpy-1.8.0.dev_a89a36e-cp27-none-macosx_10_9_intel.whl numpy-1.8.0.dev_a89a36e-cp27-none-macosx_10_9_intel.whl is not a supported wheel on this platform. Storing debug log for failure in /Users/admin/.pip/pip.log ``` When I build a wheel from source, my platform is `x86_64`. Changing `intel` to `x86_64`: ``` $mv numpy-1.8.0.dev_a89a36e-cp27-none-macosx_10_6_intel.whl numpy-1.8.0.dev_a89a36e-cp27-none-macosx_10_6_x86_64.whl ``` and then running `pip install` on that wheel successfully installed numpy (and the test suite passed). I've been searching for where the platform tag is defined, but haven't had luck yet. I'll post if I find anything. -- View this message in context: http://numpy-discussion.10968.n7.nabble.com/1-8-1-release-tp36603p36655.html Sent from the Numpy-discussion mailing list archive at Nabble.com. _______________________________________________ NumPy-Discussion mailing list NumPy-Discussion@scipy.org http://mail.scipy.org/mailman/listinfo/numpy-discussion