From 165e32f18dae490a62e48a1b5eece1ca7b09183c Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Thu, 12 Oct 2023 11:34:45 -0700 Subject: [PATCH] Manually install setuptools in script/cibuild-module --- script/cibuild-module | 1 + 1 file changed, 1 insertion(+) diff --git a/script/cibuild-module b/script/cibuild-module index 8148d73..b48ba7c 100644 --- a/script/cibuild-module +++ b/script/cibuild-module @@ -15,6 +15,7 @@ VENV_PYTHON=$(command -v python3) VENV_NAME="${TMP_DIR}/env" "$VENV_PYTHON" -m venv "$VENV_NAME" . "${VENV_NAME}/bin/activate" +pip install setuptools echo "## environment & versions ######################################################" python --version pip --version