Files
jedi/deploy.sh

14 lines
268 B
Bash
Executable File

#!/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/*