diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-04-15 11:44:05 -0700 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-04-15 11:44:05 -0700 |
commit | d4c6cd476d9cbdf306dec9ccde1efa822d2c61d8 (patch) | |
tree | 698ae04f2bcafe8ae79918c27fcab1dddfa3f460 /fabfile.py | |
parent | 78d2e13e8168f8df644376c5d6637fe24206de80 (diff) | |
download | cmd2-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.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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") |