From f948f564e3f4060cdabcdc7aac91d7c966a7b91c Mon Sep 17 00:00:00 2001 From: Fokko Driesprong Date: Thu, 16 Jan 2025 21:46:06 +0100 Subject: [PATCH] Bump Poetry to 2.0.1 (#1525) I'm feeling lucky --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b53a98da61..7a8c8ee945 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ help: ## Display this help install-poetry: ## Install poetry if the user has not done that yet. @if ! command -v poetry &> /dev/null; then \ echo "Poetry could not be found. Installing..."; \ - pip install --user poetry==1.8.5; \ + pip install --user poetry==2.0.1; \ else \ echo "Poetry is already installed."; \ fi