From 1ccdb546f06f40d797f312b8f21c45f8ed8d25a1 Mon Sep 17 00:00:00 2001 From: silverwind Date: Mon, 6 Nov 2023 01:11:34 +0100 Subject: [PATCH] Install poetry dependencies with --no-root (#27919) Poetry 1.7.0 or higher will print a warning otherwise, see discussions: https://github.com/python-poetry/poetry/pull/8369 https://github.com/python-poetry/poetry/issues/1132 > --no-root Do not install the root package (the current project). --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c38e88a8e0..68d8238794 100644 --- a/Makefile +++ b/Makefile @@ -875,7 +875,7 @@ node_modules: package-lock.json @touch node_modules .venv: poetry.lock - poetry install + poetry install --no-root @touch .venv .PHONY: update