We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 669ce94 commit 697b188Copy full SHA for 697b188
tasks.py
@@ -0,0 +1,14 @@
1
+
2
+import invoke
3
4
+# Based on https://github.com/pyca/cryptography/blob/master/tasks.py
5
6
7
+@invoke.task
8
+def release(version):
9
+ invoke.run("git tag -a fibers-{0} -m \"fibers {0} release\"".format(version))
10
+ invoke.run("git push --tags")
11
12
+ invoke.run("python setup.py sdist")
13
+ invoke.run("twine upload -r pypi dist/fibers-{0}*".format(version))
14
0 commit comments