1
0
forked from VimPlug/jedi

Adding a tag should be part of the deployment script.

This commit is contained in:
Dave Halter
2017-04-06 18:21:20 +02:00
parent 053020c449
commit 8542047e5c

View File

@@ -1,5 +1,12 @@
#!/usr/bin/env bash
set -eu -o pipefail
# Create tag
git tag $(python -c 'import jedi; print(jedi.__version__)')
git push --tags
# Package and upload to PyPI
rm -rf dist/
python setup.py sdist bdist_wheel
# Maybe do a pip install twine before.