diff options
| author | Khem Raj <khem.raj@oss.qualcomm.com> | 2026-05-14 11:52:15 -0700 |
|---|---|---|
| committer | Khem Raj <khem.raj@oss.qualcomm.com> | 2026-05-14 23:15:55 -0700 |
| commit | 4392c7d39799f1e50f041a938c97b8b0627c5f02 (patch) | |
| tree | d39045565ce4b7b88f9022a2c5d3190fe3db914a /meta-python | |
| parent | 205defa2c4e59a8a57ca62debe3ac15089f8692c (diff) | |
| download | meta-openembedded-4392c7d39799f1e50f041a938c97b8b0627c5f02.tar.gz | |
python3-cucumber-tag-expressions: Fix build with newer uv build
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
Diffstat (limited to 'meta-python')
2 files changed, 32 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-cucumber-tag-expressions/0001-pyprojects-Relax-required-version-of-uv-to-be-0.12.patch b/meta-python/recipes-devtools/python/python3-cucumber-tag-expressions/0001-pyprojects-Relax-required-version-of-uv-to-be-0.12.patch new file mode 100644 index 0000000000..e389b99fce --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-cucumber-tag-expressions/0001-pyprojects-Relax-required-version-of-uv-to-be-0.12.patch | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | From 5cf10b111d61f00db2b3d9c8c6635fc31f3ceefd Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Khem Raj <khem.raj@oss.qualcomm.com> | ||
| 3 | Date: Thu, 14 May 2026 06:43:36 -0700 | ||
| 4 | Subject: [PATCH] pyprojects: Relax required version of uv to be < 0.12 | ||
| 5 | |||
| 6 | Core now has 0.11.x and it fails this check | ||
| 7 | |||
| 8 | | * Getting build dependencies for wheel... | ||
| 9 | | | ||
| 10 | | ERROR Missing dependencies: | ||
| 11 | | uv_build<0.11.0,>=0.10.0 | ||
| 12 | |||
| 13 | Upstream-Status: Inappropriate [OE Specific] | ||
| 14 | |||
| 15 | Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com> | ||
| 16 | --- | ||
| 17 | pyproject.toml | 2 +- | ||
| 18 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 19 | |||
| 20 | diff --git a/pyproject.toml b/pyproject.toml | ||
| 21 | index b0f253e..b39d0fd 100644 | ||
| 22 | --- a/pyproject.toml | ||
| 23 | +++ b/pyproject.toml | ||
| 24 | @@ -1,6 +1,6 @@ | ||
| 25 | [build-system] | ||
| 26 | build-backend = "uv_build" | ||
| 27 | -requires = ["uv_build>=0.10.0,<0.11.0"] | ||
| 28 | +requires = ["uv_build>=0.10.0,<0.12.0"] | ||
| 29 | |||
| 30 | [project] | ||
| 31 | name = "cucumber-tag-expressions" | ||
diff --git a/meta-python/recipes-devtools/python/python3-cucumber-tag-expressions_9.1.0.bb b/meta-python/recipes-devtools/python/python3-cucumber-tag-expressions_9.1.0.bb index add7031f1e..e26f20ebb8 100644 --- a/meta-python/recipes-devtools/python/python3-cucumber-tag-expressions_9.1.0.bb +++ b/meta-python/recipes-devtools/python/python3-cucumber-tag-expressions_9.1.0.bb | |||
| @@ -4,6 +4,7 @@ HOMEPAGE = "https://github.com/cucumber/tag-expressions" | |||
| 4 | LICENSE = "MIT" | 4 | LICENSE = "MIT" |
| 5 | LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=134f1026f0de92fd30e71976590a2868" | 5 | LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=134f1026f0de92fd30e71976590a2868" |
| 6 | 6 | ||
| 7 | SRC_URI += "file://0001-pyprojects-Relax-required-version-of-uv-to-be-0.12.patch" | ||
| 7 | SRC_URI[sha256sum] = "d960383d5885300ebcbcb14e41657946fde2a59d5c0f485eb291bc6a0e228acc" | 8 | SRC_URI[sha256sum] = "d960383d5885300ebcbcb14e41657946fde2a59d5c0f485eb291bc6a0e228acc" |
| 8 | 9 | ||
| 9 | inherit pypi python_setuptools_build_meta | 10 | inherit pypi python_setuptools_build_meta |
