summaryrefslogtreecommitdiff
path: root/fabfile.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2018-04-15 11:44:05 -0700
committerTodd Leonhardt <todd.leonhardt@gmail.com>2018-04-15 11:44:05 -0700
commitd4c6cd476d9cbdf306dec9ccde1efa822d2c61d8 (patch)
tree698ae04f2bcafe8ae79918c27fcab1dddfa3f460 /fabfile.py
parent78d2e13e8168f8df644376c5d6637fe24206de80 (diff)
downloadcmd2-git-d4c6cd476d9cbdf306dec9ccde1efa822d2c61d8.tar.gz
Updated the upload code within fabfile so that both source and wheel distributions get uploaded to PyPI
Diffstat (limited to 'fabfile.py')
-rw-r--r--fabfile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/fabfile.py b/fabfile.py
index a80d5d50..729965e2 100644
--- a/fabfile.py
+++ b/fabfile.py
@@ -101,7 +101,7 @@ def release():
build()
print("Releasing", env.projname, "version", env.version)
local("git tag %s" % env.version)
- local("python setup.py sdist upload")
+ local("python setup.py sdist bdist_wheel upload")
local("git push --tags")