summaryrefslogtreecommitdiff
path: root/pavement.py
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2009-03-29 12:07:43 +0000
committerDavid Cournapeau <cournape@gmail.com>2009-03-29 12:07:43 +0000
commit3073f2c5afe8260bf62d5056fd22ef8686465663 (patch)
tree89a2fd56efefcfbb553b7e7ccb548d684c0411e5 /pavement.py
parent0b0dbdf45032ad170fbcb2068a95b34326a4a523 (diff)
downloadnumpy-3073f2c5afe8260bf62d5056fd22ef8686465663.tar.gz
Remove leftover from when I copied the paver file from samplerate scikit.
Diffstat (limited to 'pavement.py')
-rw-r--r--pavement.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/pavement.py b/pavement.py
index 482d20c05..9e1df308c 100644
--- a/pavement.py
+++ b/pavement.py
@@ -207,14 +207,13 @@ def html(options):
@task
def latex():
- """Build samplerate's documentation and install it into
- scikits/samplerate/docs"""
+ """Build numpy documentation in latex format."""
subprocess.check_call(["make", "latex"], cwd="doc")
@task
@needs('latex')
def pdf():
- def build_latex():
+ def build_pdf():
subprocess.check_call(["make", "all-pdf"], cwd=str(DOC_BLD_LATEX))
dry("Build pdf doc", build_latex)