Merge pull request #292 from alex/patch-3

Fixes #275 -- upload wheels as a part of the release process
This commit is contained in:
Jeff Forcier 2014-03-22 18:19:58 -07:00
commit 57c2ffbbd6
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ def release(ctx):
rmtree(target, ignore_errors=True) rmtree(target, ignore_errors=True)
copytree(docs_build, target) copytree(docs_build, target)
# Publish # Publish
publish(ctx) publish(ctx, wheel=True)
ns = Collection(test, coverage, release, docs=docs, www=www) ns = Collection(test, coverage, release, docs=docs, www=www)