Remove the old deploy script.

This commit is contained in:
Dave Halter
2017-09-20 22:23:50 +02:00
parent f2855ebb11
commit a06af3d989

View File

@@ -1,13 +0,0 @@
#!/usr/bin/env bash
set -eu -o pipefail
# Create tag
git tag v$(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.
twine upload dist/*