python3-pychromecast: drop wheel upper cap in build requirements

The relax-build-requirements patch capped wheel at <0.48.0, which
excludes exactly the wheel 0.48.0 that oe-core now ships, so do_compile
fails its build-requirement check:

  ERROR Unmet dependencies ... wheel<0.48.0,>=0.37.1  found: 0.48.0

Drop the wheel upper cap entirely, mirroring the setuptools change
already in this patch: OE provides wheel via DEPENDS and builds with
--no-isolation, so the cap is spurious.

Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Khem Raj
2026-08-18 00:12:13 +00:00
committed by Khem Raj
parent 6f59e8f707
commit 17aac827e3
@@ -3,10 +3,11 @@ From: Khem Raj <khem.raj@oss.qualcomm.com>
Date: Thu, 14 May 2026 11:49:05 -0700
Subject: [PATCH] pyproject.toml: Relax build requirements
Allow building with wheel 0.47+ and drop the upstream setuptools upper
cap. OE provides setuptools via DEPENDS and builds with --no-isolation,
so the cap is spurious and breaks the build whenever oe-core ships a
newer setuptools (currently 83.0.0).
Drop the upstream setuptools and wheel upper caps. OE provides both via
DEPENDS and builds with --no-isolation, so the caps are spurious and
break the build whenever oe-core ships a newer version (currently
setuptools 83.0.0 and wheel 0.48.0, the latter excluded by the previous
"wheel<0.48.0" bound).
Upstream-Status: Inappropriate [oe-core specific dependency versions]
@@ -22,7 +23,7 @@ index 20524ca..fc62798 100644
@@ -1,5 +1,5 @@
[build-system]
-requires = ["setuptools>=65.6,<83.0", "wheel>=0.37.1,<0.47.0"]
+requires = ["setuptools>=65.6", "wheel>=0.37.1,<0.48.0"]
+requires = ["setuptools>=65.6", "wheel>=0.37.1"]
build-backend = "setuptools.build_meta"
[project]