The deploy script should create versions prefixed with v.

This commit is contained in:
Dave Halter
2017-05-20 18:01:38 -04:00
parent 082cb9919f
commit a5b9177d4f

View File

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