From eadf219300f714a94699103d82eda90b241ced9e Mon Sep 17 00:00:00 2001 From: Heba Alazzeh Date: Tue, 14 Jul 2026 21:18:30 +0000 Subject: [PATCH] fix(ci): install setuptools in temporary virtualenv for import profile --- ci/run_single_test.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/run_single_test.sh b/ci/run_single_test.sh index eb083ce40965..0590257c47ec 100755 --- a/ci/run_single_test.sh +++ b/ci/run_single_test.sh @@ -110,6 +110,7 @@ case ${TEST_TYPE} in echo "Creating temporary virtualenv for import profile..." python3 -m venv .venv-profiler source .venv-profiler/bin/activate + python -m pip install --upgrade pip setuptools PACKAGE_NAME=$(basename $(pwd)) PROFILER_TEMP_DIR=$(mktemp -d)