summaryrefslogtreecommitdiffhomepage
path: root/tasks.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-03-22 18:17:44 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2014-03-22 18:17:44 -0700
commitbbb8e8ca4a48d18a7a366513fc202ea006e752df (patch)
tree8333538d08406e3cf15db71a7484be8b74610068 /tasks.py
parent7a3eedcee2ed54646665b030e08f94b69cc3e642 (diff)
Fixes #275 -- upload wheels as a part of the release process
Requires teh latest version of invocations from git
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)