We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c2ad48 commit e54601dCopy full SHA for e54601d
fabfile.py
@@ -36,14 +36,14 @@ def release(version, force=False):
36
37
clean()
38
39
- puts(" * Tagging Version %s" % version_str)
40
- force_option = 'f' if force else ''
41
- local("git tag -%sam \"%s\" %s" % (force_option, version_str, version_str))
42
-
43
local("pip install wheel")
44
45
puts(" * Uploading to PyPI")
46
upload()
47
+ puts(" * Tagging Version %s" % version_str)
+ force_option = 'f' if force else ''
+ local("git tag -%sam \"%s\" %s" % (force_option, version_str, version_str))
+
48
puts(" * Pushing Tag to upstream")
49
local("git push upstream %s" % version_str)
0 commit comments