mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-08-25 17:32:06 +00:00
python3-charset-normalizer: add patch for setuptools version
The 3.4.9 upgrade dropped the setuptools uppper-bound patch because upstream raised its cap from <82.1 to <83.1. But oe-core ships setuptools 84.0.0, so do_compile failed with Unmet dependencies: setuptools<83.1,>=68 ... found: 84.0.0 Refreshed patch to match 3.4.9's pyproject.toml Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
This commit is contained in:
committed by
Khem Raj
parent
711a10fff4
commit
63d9284f53
+2
-2
@@ -5,7 +5,7 @@ Subject: [PATCH] pyproject.toml: relax setuptools upper bound
|
||||
|
||||
OE provides setuptools via DEPENDS and builds with --no-isolation, so the
|
||||
upstream upper cap on setuptools is spurious and breaks the build whenever
|
||||
oe-core ships a newer setuptools (currently 83.0.0).
|
||||
oe-core ships a newer setuptools (currently 84.0.0).
|
||||
|
||||
Upstream-Status: Inappropriate [oe-core specific setuptools version]
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
@@ -19,6 +19,6 @@ index 1111111..2222222 100644
|
||||
+++ b/pyproject.toml
|
||||
@@ -1,3 +1,3 @@
|
||||
[build-system]
|
||||
-requires = ["setuptools>=68,<82.1"]
|
||||
-requires = ["setuptools>=68,<83.1"]
|
||||
+requires = ["setuptools>=68"]
|
||||
build-backend = "backend"
|
||||
|
||||
Reference in New Issue
Block a user