Files
meta-openembedded/meta-python/recipes-devtools/python/python3-charset-normalizer/0001-pyproject.toml-relax-setuptools-upper-bound.patch
T
Leon Anavi 8d5b629c76 python3-charset-normalizer: Upgrade 3.4.9 -> 3.5.1
Upgrade to release 3.5.1:

- Raised upper bound of setuptools to v84 (#794)
- Cache performance access optimization for our CharInfo struct
  (prebuilt only).
- No longer decoding large content when the noise detector output
  give a high entropy. Only impacted large content input >1M bytes.

Deploy sample data files to fix tests.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-03 13:23:12 -07:00

25 lines
843 B
Diff

From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Wed, 8 Jul 2026 00:00:00 +0000
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 84.0.0).
Upstream-Status: Inappropriate [oe-core specific setuptools version]
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
pyproject.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pyproject.toml b/pyproject.toml
index 1111111..2222222 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,3 +1,3 @@
[build-system]
-requires = ["setuptools>=68,<84.1"]
+requires = ["setuptools>=68"]
build-backend = "backend"