1 From b05b004192f9922c90a4399bee5c1cacc5a48b67 Mon Sep 17 00:00:00 2001
2 From: David Runge <dave@sleepmap.de>
3 Date: Mon, 9 Jan 2023 19:50:39 +0100
4 Subject: [PATCH] Switch to correct build-system definition
7 Use the correct PEP517 build-backend, as defined by poetry upstream
8 (https://python-poetry.org/docs/pyproject#poetry-and-pep-517).
10 pyproject.toml | 4 ++--
11 1 file changed, 2 insertions(+), 2 deletions(-)
13 diff --git a/pyproject.toml b/pyproject.toml
14 index 709adf1..d3292af 100644
17 @@ -31,5 +31,5 @@ matrix_sso_helper = ["aiohttp"]
18 matrix_upload = ["python-magic", "requests"]
21 -requires = ["poetry>=0.12"]
22 -build-backend = "poetry.masonry.api"
23 +requires = ["poetry-core>=1.0.0"]
24 +build-backend = "poetry.core.masonry.api"