From 993c622f1253f877fb3bdc9c9caa55aaeba80f0c Mon Sep 17 00:00:00 2001 From: Jack Cherng Date: Mon, 19 Feb 2024 15:17:23 +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 852274dd..c2b53f58 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ all: .PHONY: install -install: pip-compile +install: uv pip install -r requirements.txt .PHONY: pip-compile