diff options
Diffstat (limited to 'fabfile.py')
-rw-r--r-- | fabfile.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -30,7 +30,7 @@ def clean(): @task def build(): - local("python setup.py sdist") + local("python setup.py sdist bdist_wheel") @task @@ -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") |