mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-22 18:27:13 +00:00
4c1ec8349e
Upgrade to release 6.2.3: - Fix quadratic expansion of comma-separated range lists for a large speed-up on expressions with many ranges. - Reject a zero step (e.g. 5-5/0) in equal and reversed cron ranges instead of silently accepting it. - Fix expand_from_start_time month low-bound off-by-one so stepped month ranges start on the correct month. - Fix zizmor-reported security findings in GitHub Actions workflows. - Bump pinned build and CI dependencies via dependabot. - Upgrade locked development and build dependencies (uv lock --upgrade). Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
45 lines
1.3 KiB
Diff
45 lines
1.3 KiB
Diff
From 297d149636d063a82b33d95ab59928a88db51e4e Mon Sep 17 00:00:00 2001
|
|
From: Khem Raj <khem.raj@oss.qualcomm.com>
|
|
Date: Thu, 14 May 2026 11:44:44 -0700
|
|
Subject: [PATCH] Allow using newer versions of build dependencies
|
|
|
|
The pyproject.toml pins exact (==) versions of all build-system
|
|
requirements. When building with --no-isolation (as OE does), pip uses
|
|
the build dependencies already present in the sysroot, which are newer
|
|
than the pinned versions, e.g.:
|
|
|
|
ERROR Missing dependencies:
|
|
packaging==26.0
|
|
hatchling==1.29.0
|
|
|
|
Relax the exact pins to >= so that the (newer) provided versions
|
|
satisfy the requirements.
|
|
|
|
Upstream-Status: Pending
|
|
|
|
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
|
|
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
|
|
---
|
|
pyproject.toml | 8 ++++----
|
|
1 file changed, 4 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/pyproject.toml b/pyproject.toml
|
|
index 657cc21..d1b9ce3 100644
|
|
--- a/pyproject.toml
|
|
+++ b/pyproject.toml
|
|
@@ -1,10 +1,10 @@
|
|
[build-system]
|
|
requires = [
|
|
- "hatchling==1.30.1",
|
|
- "packaging==26.2",
|
|
- "pathspec==1.1.1",
|
|
- "pluggy==1.6.0",
|
|
- "trove-classifiers==2026.6.1.19",
|
|
+ "hatchling>=1.30.1",
|
|
+ "packaging>=26.2",
|
|
+ "pathspec>=1.1.1",
|
|
+ "pluggy>=1.6.0",
|
|
+ "trove-classifiers>=2026.6.1.19",
|
|
]
|
|
build-backend = "hatchling.build"
|