From: Peter Amstutz Date: Fri, 3 Jan 2020 20:44:28 +0000 (-0500) Subject: setuptools >=44 doesn't support Python 3.4 on Debian jessie X-Git-Tag: 1.4.3 X-Git-Url: https://git.arvados.org/arvados.git/commitdiff_plain/4d0bfd26812595cde3416768889bf644df65036f?hp=d1757cb278f370eabc16fc0314afe01a3f932656 setuptools >=44 doesn't support Python 3.4 on Debian jessie no issue # Arvados-DCO-1.1-Signed-off-by: Peter Amstutz --- 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