From 608f727e776e0d3923427be9d82bf2f575486d84 Mon Sep 17 00:00:00 2001 From: Kerstin Date: Fri, 30 Aug 2024 13:05:26 +0200 Subject: [PATCH] Use poetry-core as build backend The poetry build backend was split into the package poetry-core. See also https://python-poetry.org/docs/pyproject/#poetry-and-pep-517 https://github.com/NixOS/nixpkgs/issues/103325 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5d7d90b..311b8d1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [build-system] -requires = ["poetry>=1.0.0"] -build-backend = "poetry.masonry.api" +requires = ["poetry-core>=1.0.0"] +build-backend = "poetry.core.masonry.api" [tool] [tool.poetry]