diff --git a/deploy.sh b/deploy.sh deleted file mode 100755 index 02eba941..00000000 --- a/deploy.sh +++ /dev/null @@ -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/*