From 8b3ffec3593135384ef67a34b369bfdbe2e5e7d7 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 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 8d95d3811c6..bb11b4a46ac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -95,7 +95,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"