diff options
author | David Cournapeau <cournape@gmail.com> | 2009-03-27 11:15:00 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-03-27 11:15:00 +0000 |
commit | 743ac260db51b1ba61b1dc2bed1cde85f85b11d6 (patch) | |
tree | 8dc50adde73a9552bdfd10469498710c2bb7cd7e /pavement.py | |
parent | a293cacecf4d3e3819821d2ef737d825e5ba3d73 (diff) | |
download | numpy-743ac260db51b1ba61b1dc2bed1cde85f85b11d6.tar.gz |
Bypass paver sdist.
Diffstat (limited to 'pavement.py')
-rw-r--r-- | pavement.py | 6 |
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') |