mirror of
https://github.com/ceph/ceph
synced 2025-02-22 10:37:15 +00:00
install-deps: enable python3
The upstream regression has been fixed, we can re-enable python3 support. http://tracker.ceph.com/issues/13136 Fixes: #13136 Signed-off-by: Loic Dachary <ldachary@redhat.com>
This commit is contained in:
parent
f7eb1d8ce6
commit
4da6793d8d
@ -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 ; do # python3
|
||||
for interpreter in python2.7 python3 ; do
|
||||
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 ; do # python3
|
||||
for interpreter in python2.7 python3 ; do
|
||||
rm -rf $top_srcdir/install-deps-$interpreter
|
||||
done
|
||||
rm -rf $XDG_CACHE_HOME
|
||||
|
Loading…
Reference in New Issue
Block a user