From 3202859b7289a7bb5d590174111e47869d9d340b Mon Sep 17 00:00:00 2001 From: finswimmer Date: Wed, 14 Sep 2022 06:57:08 +0200 Subject: [PATCH] fix: poetry-core>=1.1.0 is needed as build-system requirement (cherry picked from commit 662b68417022d372fe13dedefd27a60a98b75807) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a4260f8c017..74a2de6ffa4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -96,7 +96,7 @@ poetry = "poetry.console.application:main" [build-system] -requires = ["poetry-core>=1.0.0"] +requires = ["poetry-core>=1.1.0"] build-backend = "poetry.core.masonry.api"