Use newer python -m build to build aprsd wheel

This patch changes the Makefile to make use of the
more modern mechanism in python to build a package
and wheel.
This commit is contained in:
Hemna 2024-05-18 11:14:11 -04:00
parent f15974131c
commit 2abf8bc750
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ test: dev ## Run all the tox tests
build: test ## Make the build artifact prior to doing an upload
$(VENV)/pip install twine
$(VENV)/python3 setup.py sdist bdist_wheel
$(VENV)/python3 -m build
$(VENV)/twine check dist/*
upload: build ## Upload a new version of the plugin