summaryrefslogtreecommitdiff
path: root/pavement.py
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2009-03-27 11:15:00 +0000
committerDavid Cournapeau <cournape@gmail.com>2009-03-27 11:15:00 +0000
commit743ac260db51b1ba61b1dc2bed1cde85f85b11d6 (patch)
tree8dc50adde73a9552bdfd10469498710c2bb7cd7e /pavement.py
parenta293cacecf4d3e3819821d2ef737d825e5ba3d73 (diff)
downloadnumpy-743ac260db51b1ba61b1dc2bed1cde85f85b11d6.tar.gz
Bypass paver sdist.
Diffstat (limited to 'pavement.py')
-rw-r--r--pavement.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/pavement.py b/pavement.py
index e94d68dd6..6fe5a7d92 100644
--- a/pavement.py
+++ b/pavement.py
@@ -110,3 +110,9 @@ def html(options):
builtdocs = paver.path.path("doc") / options.sphinx.builddir / "html"
HTML_DESTDIR.rmtree()
builtdocs.copytree(HTML_DESTDIR)
+
+@task
+def sdist():
+ # To be sure to bypass paver when building sdist... paver + numpy.distutils
+ # do not play well together.
+ sh('python setup.py sdist --formats=gztar,zip')