[ARVADOS] updated: 1.4.2-14-g4d0bfd268
Git user
git at public.arvados.org
Fri Jan 3 20:44:57 UTC 2020
Summary of changes:
build/run-library.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
via 4d0bfd26812595cde3416768889bf644df65036f (commit)
from d1757cb278f370eabc16fc0314afe01a3f932656 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 4d0bfd26812595cde3416768889bf644df65036f
Author: Peter Amstutz <peter.amstutz at curii.com>
Date: Fri Jan 3 15:44:28 2020 -0500
setuptools >=44 doesn't support Python 3.4 on Debian jessie
no issue #
Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz at curii.com>
diff --git a/build/run-library.sh b/build/run-library.sh
index 1aa3e3cfd..bb789eabf 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
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list