1
0
mirror of https://github.com/craigerl/aprsd.git synced 2025-06-15 04:42:26 -04:00

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

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