Kentaro Wada 9 năm trước cách đây
mục cha
commit
9b74b4be9d
1 tập tin đã thay đổi với 3 bổ sung3 xóa
  1. 3 3
      setup.py

+ 3 - 3
setup.py

@@ -8,14 +8,14 @@ import subprocess
 import sys
 
 
-version = '2.0.0'
+version = '2.0.1'
 
 
 if sys.argv[1] == 'release':
     for cmd in [
+            'python setup.py sdist upload',
             'git tag v{0}'.format(version),
-            'git push origin master --tag',
-            'python setup.py sdist upload']:
+            'git push origin master --tag']:
         subprocess.call(shlex.split(cmd))