From 1dc0df5a5acd20dd26ee4143c63fa9f780cda12c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 26 Dec 2025 22:42:31 +0000 Subject: [PATCH 1/2] Initial plan From 00b92c00f739e3229fd770469e2b91000bd9fdd0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 26 Dec 2025 22:44:36 +0000 Subject: [PATCH 2/2] Fix clean-build rule to handle .egg directories Co-authored-by: mitchelllisle <18128531+mitchelllisle@users.noreply.github.com> --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index aae1a75..f488cdb 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ clean-build: ## remove build artifacts rm -fr dist/ rm -fr .eggs/ find . -name '*.egg-info' -exec rm -fr {} + - find . -name '*.egg' -exec rm -f {} + + find . -name '*.egg' -exec rm -rf {} + clean-pyc: ## remove Python file artifacts @echo cleaning pyc file artifacts ...