Parcourir la source

Update setup.py release

Kentaro Wada il y a 7 ans
Parent
commit
5087ed2fae
1 fichiers modifiés avec 1 ajouts et 2 suppressions
  1. 1 2
      setup.py

+ 1 - 2
setup.py

@@ -65,8 +65,7 @@ if sys.argv[1] == 'release':
     commands = [
         'git tag v{:s}'.format(version),
         'git push origin master --tag',
-        'python setup.py sdist',
-        'twine upload dist/labelme-{:s}.tar.gz'.format(version),
+        'python setup.py sdist upload',
     ]
     sys.exit(sum(subprocess.call(shlex.split(cmd)) for cmd in commands))