Skip to content

Commit 4b43d20

Browse files
committed
BUG: fix TravisCI test issues when using setuptools unconditionally.
Also remove all mentions of setupegg.py from the documentation.
1 parent 99e99e9 commit 4b43d20

8 files changed

+13
-13
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ matrix:
4848
- python3-dbg
4949
- python3-dev
5050
- python3-nose
51+
- python3-setuptools
5152
- python: 2.7
5253
env: NPY_RELAXED_STRIDES_CHECKING=0 PYTHON_OO=1
5354
- python: 3.5

MANIFEST.in

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
#
66
include MANIFEST.in
77
include *.txt
8-
include setupegg.py
98
include site.cfg.example
109
include numpy/random/mtrand/generate_mtrand_c.py
1110
recursive-include numpy/random/mtrand *.pyx *.pxd

doc/HOWTO_BUILD_DOCS.rst.txt

+1-3
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,7 @@ that the correct version is imported by
3636
>>> import numpy
3737

3838
Note that you can eg. install Numpy to a temporary location and set
39-
the PYTHONPATH environment variable appropriately. Also note that if
40-
you have a system Numpy installed via Python eggs, you will also need
41-
to use ``setupegg.py`` to install the temporary Numpy.
39+
the PYTHONPATH environment variable appropriately.
4240

4341
After Numpy is installed, write::
4442

doc/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ real-dist: dist-build html html-scipyorg
8282

8383
dist-build:
8484
rm -f ../dist/*.egg
85-
cd .. && $(PYTHON) setupegg.py bdist_egg
85+
cd .. && $(PYTHON) setup.py bdist_egg
8686
install -d $(subst :, ,$(INSTALL_PPH))
8787
$(PYTHON) `which easy_install` --prefix=$(INSTALL_DIR) ../dist/*.egg
8888

doc/source/dev/development_environment.rst

+4-3
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,10 @@ test and use your changes (in ``.py`` files), by simply restarting the
6262
interpreter.
6363

6464
Note that another way to do an inplace build visible outside the repo base dir
65-
is with ``python setup.py develop``. This doesn't work for NumPy, because
66-
NumPy builds don't use ``setuptools`` by default. ``python setupegg.py
67-
develop`` will work though.
65+
is with ``python setup.py develop``. The difference is that this instead of
66+
adjusting ``PYTHONPATH``, this installs a ``.egg-link`` file into your
67+
site-packages as well as adjusts ``easy-install.pth`` there, so its a more
68+
permanent (and magical) operation.
6869

6970

7071
Other build options

doc/source/user/building.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ To perform an in-place build that can be run from the source folder run::
5656

5757
python setup.py build_ext --inplace
5858

59-
The NumPy build system uses ``distutils`` and ``numpy.distutils``.
60-
``setuptools`` is only used when building via ``pip`` or with ``python
61-
setupegg.py``. Using ``virtualenv`` should work as expected.
59+
The NumPy build system uses ``setuptools`` (from numpy 1.11.0, before that it
60+
was plain ``distutils``) and ``numpy.distutils``.
61+
Using ``virtualenv`` should work as expected.
6262

6363
*Note: for build instructions to do development work on NumPy itself, see*
6464
:ref:`development-environment`.

pavement.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
paver bootstrap && source bootstrap/bin/activate
1919
# Installing numpy is necessary to build the correct documentation (because
2020
# of autodoc)
21-
python setupegg.py install
21+
python setup.py install
2222
paver dmg
2323
2424
Building a simple (no-superpack) windows installer from wine
@@ -440,7 +440,7 @@ def _build_mpkg(pyver):
440440
ldflags = "-undefined dynamic_lookup -bundle -arch i386 -arch ppc -Wl,-search_paths_first"
441441

442442
ldflags += " -L%s" % os.path.join(os.path.dirname(__file__), "build")
443-
sh("LDFLAGS='%s' %s setupegg.py bdist_mpkg" % (ldflags, " ".join(MPKG_PYTHON[pyver])))
443+
sh("LDFLAGS='%s' %s setup.py bdist_mpkg" % (ldflags, " ".join(MPKG_PYTHON[pyver])))
444444

445445
@task
446446
def simple_dmg():

tools/travis-test.sh

+1
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ run_test()
132132

133133
export PYTHON
134134
export PIP
135+
$PIP install setuptools
135136
if [ -n "$USE_WHEEL" ] && [ $# -eq 0 ]; then
136137
# Build wheel
137138
$PIP install wheel

0 commit comments

Comments
 (0)