1From 76c1c545bad28f592405ca1e5bcf6081051c946a Mon Sep 17 00:00:00 2001 2From: James Hilliard <james.hilliard1@gmail.com> 3Date: Tue, 13 Feb 2024 13:37:00 -0700 4Subject: [PATCH] Switch build-backend to poetry-core 5 6poetry-core is the lightweight counterpart of poetry that is intended 7to be used as a build-backend. Unlike poetry, it does not require 8installing all the dependencies of the package manager, making 9the builds much faster. The generated artifacts are the same. 10 11Signed-off-by: James Hilliard <james.hilliard1@gmail.com> 12Upstream: https://github.com/vpoulailleau/simplelogging/pull/230 13--- 14 pyproject.toml | 4 ++-- 15 1 file changed, 2 insertions(+), 2 deletions(-) 16 17diff --git a/pyproject.toml b/pyproject.toml 18index a89ab64..79403cb 100644 19--- a/pyproject.toml 20+++ b/pyproject.toml 21@@ -55,5 +55,5 @@ commands = 22 """ 23 24 [build-system] 25-requires = ["poetry>=0.12"] 26-build-backend = "poetry.masonry.api" 27+requires = ["poetry-core>=1.0.0"] 28+build-backend = "poetry.core.masonry.api" 29-- 302.34.1 31 32