archrelease: copy trunk to community-any
[ArchLinux/community.git] / weechat-matrix / trunk / 0001-Switch-to-correct-build-system-definition.patch
blobf2402f805a6a9efac66847924c85f8f36844c598
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
6 pyproject.toml:
7 Use the correct PEP517 build-backend, as defined by poetry upstream
8 (https://python-poetry.org/docs/pyproject#poetry-and-pep-517).
9 ---
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
15 --- a/pyproject.toml
16 +++ b/pyproject.toml
17 @@ -31,5 +31,5 @@ matrix_sso_helper = ["aiohttp"]
18 matrix_upload = ["python-magic", "requests"]
20 [build-system]
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"
25 --
26 2.39.0