aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-01-06 15:27:28 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2014-01-06 15:27:28 -0800
commitd42fd94fa20d90691c4f63e7f299000ba9bb5b0e (patch)
treeee88c28ed3e5a85de8872000860a0a53048b65da
parent7b8ef39ebe77b7686c34a2ffdef2c39e387760cb (diff)
downloadcryptography-d42fd94fa20d90691c4f63e7f299000ba9bb5b0e.tar.gz
cryptography-d42fd94fa20d90691c4f63e7f299000ba9bb5b0e.tar.bz2
cryptography-d42fd94fa20d90691c4f63e7f299000ba9bb5b0e.zip
Suggestion from @dreid
-rw-r--r--tasks.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tasks.py b/tasks.py
index 5db7a617..bb30194a 100644
--- a/tasks.py
+++ b/tasks.py
@@ -44,9 +44,8 @@ def release(version):
update_version("docs/conf.py", "release", version)
invoke.run("git commit -am 'Bump version numbers for release.'")
- invoke.run("git push")
invoke.run("git tag -s {}".format(version))
- invoke.run("git push --tags")
+ invoke.run("git push --all --tags")
invoke.run("python setup.py sdist bdist_wheel")
invoke.run("twine upload -s dist/cryptography-{}*".format(version))