diff options
author | David Luevano Alvarado <david@luevano.xyz> | 2022-11-27 04:03:12 -0600 |
---|---|---|
committer | David Luevano Alvarado <david@luevano.xyz> | 2022-11-27 04:03:12 -0600 |
commit | 9ea43f16d6440dce54ae7f78d46618d25e52f6ec (patch) | |
tree | 55704a41490274b60d029e01c83477aea1c9f392 | |
parent | 2d99be5909522384b5c7ae9547117c7948971641 (diff) |
change python/twine command for the build command
-rw-r--r-- | ChangeLog | 10 | ||||
-rwxr-xr-x | build_upload.sh | 4 |
2 files changed, 12 insertions, 2 deletions
@@ -1,6 +1,16 @@ CHANGES ======= +v0.7.3 +------ + +* replace uncompatible highlighter/marker + +v0.7.2 +------ + +* Add new extensions for ^ and ~ syntax + v0.7.1 ------ diff --git a/build_upload.sh b/build_upload.sh index c195b5f..7ddd573 100755 --- a/build_upload.sh +++ b/build_upload.sh @@ -4,11 +4,11 @@ # too lazy to make it more general echo "building package" -/bin/python -m build +python -m build echo "uploading to pypi" # alternatively, use /bin/python -m twine, i use twine in arch -/bin/twine upload dist/* +twine upload dist/* echo "removing dist/*" rm -r dist
\ No newline at end of file |