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
This commit is contained in:
James E. Blair 2025-04-08 16:10:14 -07:00
parent 880a26f1ac
commit 51771029d5

View File

@ -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