From 63bbbb7c58413d83cd23e979cea528eb638ad705 Mon Sep 17 00:00:00 2001 From: David Hotham Date: Wed, 6 Aug 2025 20:27:40 +0100 Subject: [PATCH] publish a wheel --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 88e8516..a34e85f 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ install: ## Install dependencies in local virtualenv folder publish: ## Publish the library to the central PyPi repository # build and upload archive - ($(VENV_RUN) && pip install setuptools && ./setup.py sdist && twine upload dist/*) + ($(VENV_RUN) && pip install build && python -m build && twine upload dist/*) lint: ## Run code linter flake8 bin/awslocal --ignore=E501,W503