From 35f4601f58838fa39df3ce0b4f51c75851639828 Mon Sep 17 00:00:00 2001 From: Alexander Rashed Date: Thu, 24 Jul 2025 09:21:01 +0200 Subject: [PATCH] use build instead of setuptools to create the dist, build wheel --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ec8dc7a..ac1bade 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ test: ## Run unit/integration tests publish: ## Publish the library to the central PyPi repository # build and upload archive - ($(VENV_RUN) && pip install setuptools twine && ./setup.py sdist && twine upload dist/*) + ($(VENV_RUN) && pip install build twine && python3 -m build && twine upload dist/*) clean: ## Clean up rm -rf $(VENV_DIR)