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