From 7243fef687667a513d7951b4d89414eadfe4c7eb Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 26 Dec 2025 22:29:37 +0000 Subject: [PATCH 1/4] Initial plan From 853f46e933991948855c0f755851a6970a6238e9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 26 Dec 2025 22:32:01 +0000 Subject: [PATCH 2/4] Fix docker-compose command to use Docker Compose V2 syntax Co-authored-by: mitchelllisle <18128531+mitchelllisle@users.noreply.github.com> --- .github/workflows/run-tests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yaml b/.github/workflows/run-tests.yaml index e6ee6fc..9c0bd44 100644 --- a/.github/workflows/run-tests.yaml +++ b/.github/workflows/run-tests.yaml @@ -9,4 +9,4 @@ jobs: steps: - uses: actions/checkout@v2 - name: Run containers - run: docker-compose -f docker/docker-compose.yaml up --abort-on-container-exit + run: docker compose -f docker/docker-compose.yaml up --abort-on-container-exit 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 3/4] 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 4/4] 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 ...