Merge pull request #2 from lpm0073/python3

Consistently use python3 in Makefile
This commit is contained in:
Lawrence McDaniel 2022-12-20 13:49:20 -06:00 committed by GitHub
commit 3eda26893d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,9 @@
# CHANGE LOG # CHANGE LOG
## Version 1.0.6 (2022-12-20)
- standardize usage of python3 in Makefile
## Version 1.0.5 (2022-12-20) ## Version 1.0.5 (2022-12-20)
- version bumps - version bumps

View File

@ -9,7 +9,7 @@ report:
build: build:
python3 -m pip install --upgrade setuptools wheel twine python3 -m pip install --upgrade setuptools wheel twine
python -m pip install --upgrade build python3 -m pip install --upgrade build
if [ -d "./build" ]; then sudo rm -r build; fi if [ -d "./build" ]; then sudo rm -r build; fi
if [ -d "./dist" ]; then sudo rm -r dist; fi if [ -d "./dist" ]; then sudo rm -r dist; fi