From 8eba567205ad167833277e27d8d881fea8a474fb Mon Sep 17 00:00:00 2001 From: Kerstin Humm Date: Fri, 30 Aug 2024 13:09:24 +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 e69563f9..77521ddc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [build-system] -requires = ["poetry>=1.0.0", "babel", "setuptools; python_version>='3.12'"] -build-backend = "poetry.masonry.api" +requires = ["poetry-core>=1.0.0", "babel", "setuptools; python_version>='3.12'"] +build-backend = "poetry.core.masonry.api" [tool] [tool.poetry]