From 2abf8bc750542b07bbbbc96efa4613aeffc5db8a Mon Sep 17 00:00:00 2001 From: Hemna Date: Sat, 18 May 2024 11:14:11 -0400 Subject: [PATCH] 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. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9df9a70..68d9216 100644 --- a/Makefile +++ b/Makefile @@ -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