From 4d0bfd26812595cde3416768889bf644df65036f Mon Sep 17 00:00:00 2001 From: Peter Amstutz Date: Fri, 3 Jan 2020 15:44:28 -0500 Subject: [PATCH] setuptools >=44 doesn't support Python 3.4 on Debian jessie no issue # Arvados-DCO-1.1-Signed-off-by: Peter Amstutz --- build/run-library.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/run-library.sh b/build/run-library.sh index 1aa3e3cfd1..bb789eabfe 100755 --- a/build/run-library.sh +++ b/build/run-library.sh @@ -435,8 +435,8 @@ fpm_build_virtualenv () { rm -rf dist/* - # Get the latest setuptools - if ! $pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U setuptools; then + # Get setuptools, but <44 because >=44 doesn't support python 3.4 + if ! $pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U 'setuptools<44'; then echo "Error, unable to upgrade setuptools with" echo " $pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U setuptools" exit 1 -- 2.30.2