From bf9412e08379211bee4698f64e05d9a512b59ed6 Mon Sep 17 00:00:00 2001 From: Arun Babu Neelicattu Date: Thu, 1 Oct 2020 14:45:45 +0200 Subject: [PATCH] Use poetry-core as PEP 517 build backend (#108) This change replaces the use of poetry as the build backend in favour of the leaner poetry-core. This speeds up PEP-517 builds for source installs, tox environment setup etc. --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f3287d3..b5be6bd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -77,5 +77,5 @@ commands = """ [build-system] -requires = ["poetry>=0.12"] -build-backend = "poetry.masonry.api" +requires = ["poetry-core>=1.0.0,<2"] +build-backend = "poetry.core.masonry.api"