diff options
author | Matthew Brett <matthew.brett@gmail.com> | 2016-03-07 12:52:08 -0800 |
---|---|---|
committer | Matthew Brett <matthew.brett@gmail.com> | 2016-03-07 12:52:08 -0800 |
commit | be575d5d34bc00262b4bb726208af3f9bfac0332 (patch) | |
tree | 48a11b721046b8a4a78bff6df554348e04613207 /setup.py | |
parent | 8c4048a1dbc2bee0cc756ece29166863fbdcc748 (diff) | |
download | numpy-be575d5d34bc00262b4bb726208af3f9bfac0332.tar.gz |
DOC: note about wheels / windows wheels for pypi
Add note about wheels on pypi, and Windows wheels in particular. See
discussion at: https://github.com/numpy/numpy/issues/5479
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -12,6 +12,13 @@ interfacing with general-purpose data-base applications. There are also basic facilities for discrete fourier transform, basic linear algebra and random number generation. +All numpy wheels distributed from pypi are BSD licensed. + +Windows wheels are linked against the ATLAS BLAS / LAPACK library, restricted +to SSE2 instructions, so may not give optimal linear algebra performance for +your machine. See http://docs.scipy.org/doc/numpy/user/install.html for +alternatives. + """ from __future__ import division, print_function |