From d42fd94fa20d90691c4f63e7f299000ba9bb5b0e Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Mon, 6 Jan 2014 15:27:28 -0800 Subject: Suggestion from @dreid --- tasks.py | 3 +-- 1 file changed, 1 insertion(+), 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)) -- cgit v1.2.3