Skip to content

Commit

Permalink
install-deps.sh: disable python3
Browse files Browse the repository at this point in the history
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: ceph#13136

Signed-off-by: Loic Dachary <[email protected]>
  • Loading branch information
ldachary committed Sep 17, 2015
1 parent 391cfb9 commit 7182499
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit 7182499

Please sign in to comment.