summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-gcovr/0001-pyproject.toml-Support-newer-versions.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-gcovr/0001-pyproject.toml-Support-newer-versions.patch')
-rw-r--r--meta-python/recipes-devtools/python/python3-gcovr/0001-pyproject.toml-Support-newer-versions.patch31
1 files changed, 31 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-gcovr/0001-pyproject.toml-Support-newer-versions.patch b/meta-python/recipes-devtools/python/python3-gcovr/0001-pyproject.toml-Support-newer-versions.patch
new file mode 100644
index 0000000000..b06acdf333
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-gcovr/0001-pyproject.toml-Support-newer-versions.patch
@@ -0,0 +1,31 @@
1From 99d7788bab614ff5a451f09204139b4cae40be3e Mon Sep 17 00:00:00 2001
2From: Leon Anavi <leon.anavi@konsulko.com>
3Date: Tue, 4 Mar 2025 13:30:48 +0000
4Subject: [PATCH] pyproject.toml: Support newer versions
5
6Support newer versions when building through bitbake.
7
8Upstream-Status: Inappropriate [oe specific]
9
10Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
11---
12 pyproject.toml | 6 +++---
13 1 file changed, 3 insertions(+), 3 deletions(-)
14
15diff --git a/pyproject.toml b/pyproject.toml
16index f8e54eb03..e6242f042 100644
17--- a/pyproject.toml
18+++ b/pyproject.toml
19@@ -1,9 +1,9 @@
20
21 [build-system]
22 requires = [
23- "hatchling==1.26.1",
24- "hatch-vcs==0.4.0",
25- "hatch-fancy-pypi-readme==24.1.0"
26+ "hatchling>=1.26.1",
27+ "hatch-vcs>=0.4.0",
28+ "hatch-fancy-pypi-readme>=24.1.0"
29 ]
30 build-backend = "hatchling.build"
31