From 0999721c7b4d124c1f14bbd067acdcf767542abb Mon Sep 17 00:00:00 2001 From: silverwind Date: Mon, 6 Nov 2023 16:44:04 +0100 Subject: [PATCH] Add `--no-root` to `update-py` (#27937) Missed this command in https://github.com/go-gitea/gitea/pull/27919. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 68d8238794..068dda5f52 100644 --- a/Makefile +++ b/Makefile @@ -892,7 +892,7 @@ update-js: node-check | node_modules update-py: node-check | node_modules npx updates -u -f pyproject.toml rm -rf .venv poetry.lock - poetry install + poetry install --no-root @touch .venv .PHONY: fomantic