diff options
author | David Cournapeau <cournape@gmail.com> | 2009-04-17 10:15:59 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-04-17 10:15:59 +0000 |
commit | e427f7a166b83e6523248eaddabd0742f9d329e9 (patch) | |
tree | aad8adcdd07d57d05320e9f84a3023b0beef4a2d /pavement.py | |
parent | 706640dceec3ba4e518b979a898b5e4ce0be5539 (diff) | |
download | numpy-e427f7a166b83e6523248eaddabd0742f9d329e9.tar.gz |
Don't use paver html target to avoid using a numpy which is different than the one installed in the bootstrapped venv.
Diffstat (limited to 'pavement.py')
-rw-r--r-- | pavement.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pavement.py b/pavement.py index 0868a74ef..f7f615c54 100644 --- a/pavement.py +++ b/pavement.py @@ -204,9 +204,10 @@ def write_log(): # Doc stuff @task -@needs('paver.doctools.html') def html(options): """Build numpy documentation and put it into build/docs""" + # Don't use paver html target because of numpy bootstrapping problems + subprocess.check_call(["make", "html"], cwd="doc") builtdocs = paver.path.path("doc") / options.sphinx.builddir / "html" HTML_DESTDIR.rmtree() builtdocs.copytree(HTML_DESTDIR) |