-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update upload scripts for easier GitHub releases
- Loading branch information
Froggo8311
authored and
Froggo8311
committed
Nov 3, 2022
1 parent
227b980
commit 6ff8019
Showing
2 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
python setup.py sdist bdist_wheel | ||
python -m twine upload --repository testpypi dist/* --verbose | ||
mv dist/*.whl . | ||
echo "Done. You can now upload the wheel to GitHub." | ||
read -p "Press Enter to delete the wheel. " </dev/tty | ||
rm -rf dist/ build/ *.egg-info/ pheonix/__pycache__ ppm/__pycache__ __pycache__ *.whl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
python setup.py sdist bdist_wheel | ||
python -m twine upload dist/* --verbose | ||
mv dist/*.whl . | ||
echo "Done. You can now upload the wheel to GitHub." | ||
read -p "Press Enter to delete the wheel." </dev/tty | ||
rm -rf dist/ build/ *.egg-info/ pheonix/__pycache__ ppm/__pycache__ __pycache__ *.whl |