From: Abhishek Lekshmanan Date: Mon, 10 Apr 2017 17:15:25 +0000 (+0200) Subject: script: build-doc use python2 only for virtualenv X-Git-Tag: v12.0.2~110^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=a69efc7760b80d8508b419deaab16242fcebf49d;p=ceph.git script: build-doc use python2 only for virtualenv This is because the sphinx-ditaa package and ceph's rbd/rgw/rados pybind require python2 Signed-off-by: Abhishek Lekshmanan --- diff --git a/admin/build-doc b/admin/build-doc index fb5eaebf94bd..5be6f66e878c 100755 --- a/admin/build-doc +++ b/admin/build-doc @@ -57,7 +57,7 @@ cd build-doc [ -z "$vdir" ] && vdir="$TOPDIR/build-doc/virtualenv" if [ ! -e $vdir ]; then - virtualenv --system-site-packages $vdir + virtualenv --system-site-packages $vdir -p python2 fi $vdir/bin/pip install --quiet -r $TOPDIR/admin/doc-requirements.txt