From f606674a521fef3d07b589c15bf4b002c840504c Mon Sep 17 00:00:00 2001 From: Seyeong Kim Date: Tue, 24 Feb 2026 09:54:43 +0900 Subject: [PATCH] Pin setuptools<82 for Python>=3.12 to fix build breakage setuptools >= 82 dropped pkg_resources, which breaks the build. Signed-off-by: Seyeong Kim --- wheelhouse.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wheelhouse.txt b/wheelhouse.txt index e7e04a1..175340e 100644 --- a/wheelhouse.txt +++ b/wheelhouse.txt @@ -27,7 +27,7 @@ MarkupSafe<2.2.0;python_version >= '3.7' # newer pythons setuptools<42;python_version < '3.8' # https://github.com/juju-solutions/layer-basic/issues/201 setuptools<62.2.0;python_version >= '3.8' and python_version<'3.12' -setuptools>=62.2.0;python_version >= '3.12' +setuptools>=62.2.0,<82;python_version >= '3.12' setuptools-scm<=1.17.0;python_version < '3.8' # https://github.com/pypa/setuptools_scm/issues/722 setuptools-scm<7;python_version >= '3.8' and python_version < '3.12'