commit | 4345c0d3e65132985afb3f5a7fee04ea212811a0 | [log] [tgz] |
---|---|---|
author | Alex Gaynor <alex.gaynor@gmail.com> | Tue Jan 07 11:12:47 2014 -0800 |
committer | Alex Gaynor <alex.gaynor@gmail.com> | Tue Jan 07 11:12:47 2014 -0800 |
tree | 081c54d6b7ccbc1b592c3011849da691436d6d05 | |
parent | fea893c7060c57fe5ed9e0f9df58fee5c306681b [diff] |
Python 2.6 support
diff --git a/tasks.py b/tasks.py index ca967f0..f72f43b 100644 --- a/tasks.py +++ b/tasks.py
@@ -20,8 +20,8 @@ """ ``version`` should be a string like '0.4' or '1.0'. """ - invoke.run("git tag -s {}".format(version)) + invoke.run("git tag -s {0}".format(version)) invoke.run("git push --tags") invoke.run("python setup.py sdist") - invoke.run("twine upload -s dist/cryptography-{}*".format(version)) + invoke.run("twine upload -s dist/cryptography-{0}*".format(version))