From c57962dad3ba730c5cb3e0cc767b885b59cba0bb Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 7 Feb 2026 16:54:13 +0000 Subject: [PATCH 1/2] Initial plan From ce0560b8254989091b9a64d4b72c60895a1f51bd Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 7 Feb 2026 16:56:27 +0000 Subject: [PATCH 2/2] Use 'uv tool run' for pre-commit to avoid dependency requirement Co-authored-by: MrLYC <6391488+MrLYC@users.noreply.github.com> --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8933120..78fe86b 100644 --- a/Makefile +++ b/Makefile @@ -2,12 +2,12 @@ install: ## Install the poetry environment and install the pre-commit hooks @echo "🚀 Creating virtual environment using uv" @uv sync - @uv run pre-commit install + @uv tool run pre-commit install .PHONY: check check: ## Run code quality tools. @echo "🚀 Running code quality checks" - @uv run pre-commit run -a + @uv tool run pre-commit run -a .PHONY: test test: ## Test the code with pytest