From 7182499ca33fa1fa8f16b7831a5fdb349dfa773e Mon Sep 17 00:00:00 2001 From: Loic Dachary Date: Thu, 17 Sep 2015 09:35:11 +0200 Subject: [PATCH] install-deps.sh: disable python3 Disable python3 support until https://bugs.launchpad.net/ubuntu/+source/python-coverage/+bug/1496715 is fixed. Nothing in the build process depends on python3 right now, there is no harm disabling it. http://tracker.ceph.com/issues/13136 Fixes: #13136 Signed-off-by: Loic Dachary --- install-deps.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install-deps.sh b/install-deps.sh index 5ad41c69cd989..886678feb9d61 100755 --- a/install-deps.sh +++ b/install-deps.sh @@ -131,7 +131,7 @@ find . -name tox.ini | while read ini ; do cd $(dirname $ini) require=$(ls *requirements.txt 2>/dev/null | sed -e 's/^/-r /') if test "$require" && ! test -d wheelhouse ; then - for interpreter in python2.7 python3 ; do + for interpreter in python2.7 ; do # python3 type $interpreter > /dev/null 2>&1 || continue activate_virtualenv $top_srcdir $interpreter || exit 1 populate_wheelhouse "wheel -w $wip_wheelhouse" $require || exit 1 @@ -141,7 +141,7 @@ find . -name tox.ini | while read ini ; do ) done -for interpreter in python2.7 python3 ; do +for interpreter in python2.7 ; do # python3 rm -rf $top_srcdir/install-deps-$interpreter done rm -rf $XDG_CACHE_HOME -- 2.39.5