1From 9e3dda0efb54fee6934c744a13a7336d24c6e9e9 Mon Sep 17 00:00:00 2001 2From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= <mgorny@gentoo.org> 3Date: Thu, 27 Jan 2022 10:33:08 +0100 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 11Upstream: https://github.com/matthewdeanmartin/terminaltables/commit/9e3dda0efb54fee6934c744a13a7336d24c6e9e9 12Signed-off-by: Arnout Vandecappelle <arnout@mind.be> 13--- 14 pyproject.toml | 4 ++-- 15 2 files changed, 4 insertions(+), 4 deletions(-) 16 17diff --git a/pyproject.toml b/pyproject.toml 18index a861add..ff4b190 100644 19--- a/pyproject.toml 20+++ b/pyproject.toml 21@@ -62,5 +62,5 @@ python = ">=2.6 || >=3.0" 22 pytest = "==6.0.1" 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