From e349bbacb20883f82fc0c5b896e793c6ff28822c Mon Sep 17 00:00:00 2001 From: ivanovac Date: Fri, 10 Jul 2026 15:09:45 +0300 Subject: [PATCH] Add flit-core as wheel to pip bundle (required by pip 26.x build backend) --- internal/recipe/pip.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/recipe/pip.go b/internal/recipe/pip.go index ba90aeec..9f333fa7 100644 --- a/internal/recipe/pip.go +++ b/internal/recipe/pip.go @@ -48,6 +48,7 @@ func (p *PipRecipe) Build(ctx context.Context, s *stack.Stack, src *source.Input ExtraDeps: []string{ "setuptools", "wheel>=0.46.2", // CVE-2026-24049 + "flit-core>=3.11", // build backend required by pip 26.x (downloaded as wheel to avoid circular dep) }, }).Build(ctx, s, src, r, out) }