From d4c6cd476d9cbdf306dec9ccde1efa822d2c61d8 Mon Sep 17 00:00:00 2001 From: Todd Leonhardt Date: Sun, 15 Apr 2018 11:44:05 -0700 Subject: Updated the upload code within fabfile so that both source and wheel distributions get uploaded to PyPI --- fabfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'fabfile.py') 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") -- cgit v1.2.1