mirror of
https://github.com/davidhalter/jedi.git
synced 2026-01-01 09:43:21 +08:00
7 lines
127 B
Bash
Executable File
7 lines
127 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
rm -rf dist/
|
|
python setup.py sdist bdist_wheel
|
|
# Maybe do a pip install twine before.
|
|
twine upload dist/*
|