From 51771029d5d13a469d61f121796cb3d1b347e1dd Mon Sep 17 00:00:00 2001 From: "James E. Blair" Date: Tue, 8 Apr 2025 16:10:14 -0700 Subject: [PATCH] Add setuptools to python-builder assemble The assemble script creates a clean build environment where it installes the latest pip, wheel, and build. New versions of wheel need newer setuptools, so install that as whell. Change-Id: I352a13b3eca742cae6e29d60a6d8c1853b27ca93 --- docker/python-builder/scripts/assemble | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/python-builder/scripts/assemble b/docker/python-builder/scripts/assemble index 683547a73f..81a8df4643 100755 --- a/docker/python-builder/scripts/assemble +++ b/docker/python-builder/scripts/assemble @@ -90,7 +90,7 @@ done # Use a clean virtualenv for install steps to prevent things from the # current environment making us not build a wheel. python3 -m venv /tmp/venv -/tmp/venv/bin/pip install -U pip wheel build +/tmp/venv/bin/pip install -U pip wheel build setuptools /tmp/venv/bin/pip --version