From 9be0ec7c6206093b172fb930e814d9cccbeb524a Mon Sep 17 00:00:00 2001 From: Miroslav Vadkerti Date: Mon, 5 Jun 2023 22:12:53 +0200 Subject: [PATCH] pyproject.toml: update prehistoric build-system MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I got struck by this problem: https://github.com/python-poetry/poetry/issues/7583 While trying to install `gluetool-modules-internal` with path dependency on `gluetool-modules-framework` with `develop = true`. ``` • Installing gluetool-modules-framework (0.9.0 /var/home/mvadkert/git/gitlab.com/testing-farm/gluetool-modules): Failed ChefBuildError Backend operation failed: HookMissing('build_editable') ``` This resolves the problem. Signed-off-by: Miroslav Vadkerti --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 40e36149..cc5ba302 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -191,5 +191,5 @@ types-simplejson = "*" development = ["ipdb"] [build-system] -requires = ["poetry>=0.12"] -build-backend = "poetry.masonry.api" +requires = ["poetry>=1.0.0"] +build-backend = "poetry.core.masonry.api"