summaryrefslogtreecommitdiff
path: root/tasks.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-03-22 18:17:44 -0700
committerJeff Forcier <jeff@bitprophet.org>2014-03-22 18:28:12 -0700
commit783b2d7683e7463ede1d00d98e6e6c63b426bea5 (patch)
tree8c728c29cfaa11414accd9f566702116f5d8d999 /tasks.py
parent87b57dc0cd2d8cb1b6eb605f8b885fac2937c3c6 (diff)
downloadparamiko-783b2d7683e7463ede1d00d98e6e6c63b426bea5.tar.gz
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)