From c545889d71488504bd24e19a67170435236c6145 Mon Sep 17 00:00:00 2001 From: Jack Cherng Date: Tue, 20 Feb 2024 13:19:06 +0800 Subject: [PATCH] chore: don't recompile requirements.in when installing Signed-off-by: Jack Cherng --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1a3e24a..33ea82d 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ all: .PHONY: install -install: pip-compile +install: python -m uv pip install -r requirements.txt .PHONY: pip-compile