diff options
author | silverwind <me@silverwind.io> | 2023-11-06 01:11:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-06 00:11:34 +0000 |
commit | 1ccdb546f06f40d797f312b8f21c45f8ed8d25a1 (patch) | |
tree | e5fd3430c90f9bccd12ebacbdc095df7c030f608 /Makefile | |
parent | 37a7c551d46de8cd2a44c8a16ee251ce23af0da8 (diff) | |
download | gitea-1ccdb546f06f40d797f312b8f21c45f8ed8d25a1.tar.gz gitea-1ccdb546f06f40d797f312b8f21c45f8ed8d25a1.zip |
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).
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |