1From 3c4d1203eb9ee3dbe79b096d587c9baaf8b802ed Mon Sep 17 00:00:00 2001
2From: James Hilliard <james.hilliard1@gmail.com>
3Date: Fri, 11 Mar 2022 13:26:31 -0700
4Subject: [PATCH] Fix flit_core build requires/backend.
5
6Only flit_core should be required by pyproject.toml, the regular flit
7package is the pep517 frontend which is not what should be set for the
8build system.
9
10Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
11Upstream: https://github.com/aio-libs/aiologstash/pull/258
12---
13 pyproject.toml | 4 ++--
14 1 file changed, 2 insertions(+), 2 deletions(-)
15
16diff --git a/pyproject.toml b/pyproject.toml
17index 7bdaebb..252a660 100644
18--- a/pyproject.toml
19+++ b/pyproject.toml
20@@ -1,6 +1,6 @@
21 [build-system]
22-requires = ["flit"]
23-build-backend = "flit.buildapi"
24+requires = ["flit_core"]
25+build-backend = "flit_core.buildapi"
26
27 [tool.flit.metadata]
28 module = "aiologstash"
29--
302.34.1
31
32