mirror of
https://github.com/cosinekitty/astronomy.git
synced 2026-01-28 17:22:01 -05:00
The way I was publishing the Python package was annoying. I found a better way to authenticate myself to pypi.org, but I needed to test it. This required bumping the version numbers of the packages. There is no difference between 2.0.12 and 2.0.13.
6 lines
132 B
Bash
Executable File
6 lines
132 B
Bash
Executable File
#!/bin/bash
|
|
rm -f dist/*
|
|
python3 -m build || exit $?
|
|
python3 -m twine upload --repository astronomy-engine dist/* || exit $?
|
|
exit 0
|