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 /pavement.py | |
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 'pavement.py')
-rw-r--r-- | pavement.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pavement.py b/pavement.py index ef6c6af52..45a6943fe 100644 --- a/pavement.py +++ b/pavement.py @@ -18,7 +18,7 @@ as follows:: paver bootstrap && source bootstrap/bin/activate # Installing numpy is necessary to build the correct documentation (because # of autodoc) - python setupegg.py install + python setup.py install paver dmg Building a simple (no-superpack) windows installer from wine @@ -440,7 +440,7 @@ def _build_mpkg(pyver): ldflags = "-undefined dynamic_lookup -bundle -arch i386 -arch ppc -Wl,-search_paths_first" ldflags += " -L%s" % os.path.join(os.path.dirname(__file__), "build") - sh("LDFLAGS='%s' %s setupegg.py bdist_mpkg" % (ldflags, " ".join(MPKG_PYTHON[pyver]))) + sh("LDFLAGS='%s' %s setup.py bdist_mpkg" % (ldflags, " ".join(MPKG_PYTHON[pyver]))) @task def simple_dmg(): |