From 27d87522f16f8eacb4b0ef6fae733c8ff3e38ecc Mon Sep 17 00:00:00 2001 From: Dmitry Tantsur Date: Mon, 22 Jun 2020 16:32:15 +0200 Subject: [PATCH] install-deps: install setuptools early for Debian Seems like bindep cannot work without it but does not pull it for some reason. Change-Id: I6c989e2aa8e71ca2fa802ec403d34612262eef2f --- scripts/install-deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install-deps.sh b/scripts/install-deps.sh index 6f4528b87..b9323b231 100755 --- a/scripts/install-deps.sh +++ b/scripts/install-deps.sh @@ -49,7 +49,7 @@ case ${ID,,} in [python3-devel]=libpython3-dev [python3-pip]=python3-pip ) - EXTRA_PKG_DEPS=( python3-venv ) + EXTRA_PKG_DEPS=( python3-venv python3-setuptools ) sudo apt-get update # NOTE(dtantsur): workaround for segfault when installing cryptography: # https://github.com/pyca/cryptography/issues/3815