summaryrefslogtreecommitdiffhomepage
path: root/tasks.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2014-03-22 18:19:58 -0700
committerJeff Forcier <jeff@bitprophet.org>2014-03-22 18:19:58 -0700
commit57c2ffbbd6d7afed4aa952ac9c4735b3adc5d349 (patch)
tree8333538d08406e3cf15db71a7484be8b74610068 /tasks.py
parent7a3eedcee2ed54646665b030e08f94b69cc3e642 (diff)
parentbbb8e8ca4a48d18a7a366513fc202ea006e752df (diff)
Merge pull request #292 from alex/patch-3
Fixes #275 -- upload wheels as a part of the release process
Diffstat (limited to 'tasks.py')
-rw-r--r--tasks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks.py b/tasks.py
index c9844780..38282b8e 100644
--- a/tasks.py
+++ b/tasks.py
@@ -43,7 +43,7 @@ def release(ctx):
rmtree(target, ignore_errors=True)
copytree(docs_build, target)
# Publish
- publish(ctx)
+ publish(ctx, wheel=True)
ns = Collection(test, coverage, release, docs=docs, www=www)