Skip to content

Commit d4c6cd4

Browse files
committed
Updated the upload code within fabfile so that both source and wheel distributions get uploaded to PyPI
1 parent 78d2e13 commit d4c6cd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fabfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def release():
101101
build()
102102
print("Releasing", env.projname, "version", env.version)
103103
local("git tag %s" % env.version)
104-
local("python setup.py sdist upload")
104+
local("python setup.py sdist bdist_wheel upload")
105105
local("git push --tags")
106106

107107

0 commit comments

Comments
 (0)