From bbb8e8ca4a48d18a7a366513fc202ea006e752df Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Sat, 22 Mar 2014 18:17:44 -0700 Subject: [PATCH] Fixes #275 -- upload wheels as a part of the release process Requires teh latest version of invocations from git --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index c984478..38282b8 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)