From d7ed9fcefa0284bda2cc64d4ddf473728710ef1c Mon Sep 17 00:00:00 2001 From: Rajendra Kadam Date: Wed, 28 Aug 2024 10:54:51 +0530 Subject: [PATCH] Ensure the build module is installed before running build command --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 3d90e385..a71fb6f2 100644 --- a/Makefile +++ b/Makefile @@ -13,6 +13,9 @@ clean: find . -name __pycache__ | xargs rm -rf build: clean + # Ensure the build module is installed + pip install build + # Run the build command python -m build --wheel install: build