The deploy script should create versions prefixed with v.

This commit is contained in:
Dave Halter
2017-05-20 18:01:33 -04:00
parent d6f695b3bb
commit 91e753e07a

View File

@@ -3,7 +3,7 @@
set -eu -o pipefail
# Create tag
git tag $(python -c 'import jedi; print(jedi.__version__)')
git tag v$(python -c 'import jedi; print(jedi.__version__)')
git push --tags
# Package and upload to PyPI