From 25ea20fa3202c192c7f4ee3dce0091ae9b7ec386 Mon Sep 17 00:00:00 2001 From: traxys Date: Thu, 28 Dec 2023 23:19:02 +0100 Subject: [PATCH] Build - use poetry-core instead of poetry See https://python-poetry.org/docs/pyproject/#poetry-and-pep-517. --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 441b2607..a8a4fdd2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -97,5 +97,5 @@ combine_as_imports = true exclude_dirs = ["fittrackee/tests/*", "fittrackee/migrations/*"] [build-system] -requires = ["poetry>=0.12"] -build-backend = "poetry.masonry.api" +requires = ["poetry-core>=1.0.0"] +build-backend = "poetry.core.masonry.api"