From 608abec1713b416679ed5b6cf2c036fece9f28cb Mon Sep 17 00:00:00 2001 From: JensDiemer Date: Mon, 19 Sep 2022 08:44:32 +0200 Subject: [PATCH] use install.python-poetry.org --- Makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index f6743c3..0fc153e 100644 --- a/Makefile +++ b/Makefile @@ -17,14 +17,13 @@ check-poetry: fi install-poetry: ## install or update poetry - pip3 install -U pip - pip3 install -U "poetry<1.2" # https://forum.yunohost.org/t/invalid-pep-440-version-0-16-0-ynh1/21293 + curl -sSL https://install.python-poetry.org | python3 - install: check-poetry ## install project via poetry poetry install -update: install-poetry ## update the sources and installation and generate "conf/requirements.txt" - poetry update +update: check-poetry ## update the sources and installation and generate "conf/requirements.txt" + poetry update -v poetry export -f requirements.txt --output conf/requirements.txt lint: ## Run code formatters and linter