diff options
author | Ralf Gommers <ralf.gommers@gmail.com> | 2015-12-29 17:24:51 +0100 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@gmail.com> | 2016-01-16 12:18:26 +0100 |
commit | 4b43d20fec0eda4a8f02e843b3e6e454bb243f49 (patch) | |
tree | be091114f13246da8f82da3df47a91ab8ddfd364 /doc/source/user | |
parent | 99e99e90db4c73a6baae178879937f4baebd3241 (diff) | |
download | numpy-4b43d20fec0eda4a8f02e843b3e6e454bb243f49.tar.gz |
BUG: fix TravisCI test issues when using setuptools unconditionally.
Also remove all mentions of setupegg.py from the documentation.
Diffstat (limited to 'doc/source/user')
-rw-r--r-- | doc/source/user/building.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/user/building.rst b/doc/source/user/building.rst index 8acb2fa3b..d6ca622f9 100644 --- a/doc/source/user/building.rst +++ b/doc/source/user/building.rst @@ -56,9 +56,9 @@ To perform an in-place build that can be run from the source folder run:: python setup.py build_ext --inplace -The NumPy build system uses ``distutils`` and ``numpy.distutils``. -``setuptools`` is only used when building via ``pip`` or with ``python -setupegg.py``. Using ``virtualenv`` should work as expected. +The NumPy build system uses ``setuptools`` (from numpy 1.11.0, before that it +was plain ``distutils``) and ``numpy.distutils``. +Using ``virtualenv`` should work as expected. *Note: for build instructions to do development work on NumPy itself, see* :ref:`development-environment`. |