From e5a78d7339673b1cd30854b87c3ec50d7673da47 Mon Sep 17 00:00:00 2001 From: Mathieu Leplatre Date: Wed, 24 Jan 2024 13:40:52 +0100 Subject: [PATCH] Install local package in editable mode --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2ef226d..46928e4 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ $(VENV)/bin/python: install: $(INSTALL_STAMP) pyproject.toml requirements.txt $(INSTALL_STAMP): $(VENV)/bin/python pyproject.toml requirements.txt $(VENV)/bin/pip install -r requirements.txt - $(VENV)/bin/pip install ".[dev]" + $(VENV)/bin/pip install -e ".[dev]" touch $(INSTALL_STAMP) lint: install