mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

The python package has enabled to option to build it via python_setuptools_build_meta. Therefore the recipe is updated accordingly. Also cleaned up the list of runtime dependencies which according to the package should no longer be needed. The difference between v2 and v3 is the addition of the upstream status in the included patch. Signed-off-by: Tom Geelen <t.f.g.geelen@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
23 lines
666 B
Diff
23 lines
666 B
Diff
From e82caffe51b37c211f7f0cd60002fbc6b4e48d03 Mon Sep 17 00:00:00 2001
|
|
From: Tom Geelen <t.f.g.geelen@gmail.com>
|
|
Date: Sun, 7 Apr 2024 22:39:35 +0000
|
|
Subject: [PATCH] Allow newer version of wheel and setuptools
|
|
|
|
Upstream-Status: Pending
|
|
Signed-off-by: Tom Geelen <t.f.g.geelen@gmail.com>
|
|
---
|
|
pyproject.toml | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/pyproject.toml b/pyproject.toml
|
|
index 0f19c71..d0ecf11 100644
|
|
--- a/pyproject.toml
|
|
+++ b/pyproject.toml
|
|
@@ -1,5 +1,5 @@
|
|
[build-system]
|
|
-requires = ["setuptools~=65.6", "wheel~=0.37.1"]
|
|
+requires = ["setuptools>=65.6", "wheel>=0.37.1"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|