From a69efc7760b80d8508b419deaab16242fcebf49d Mon Sep 17 00:00:00 2001 From: Abhishek Lekshmanan Date: Mon, 10 Apr 2017 19:15:25 +0200 Subject: [PATCH] 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 --- admin/build-doc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/build-doc b/admin/build-doc index fb5eaebf94b..5be6f66e878 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 -- 2.47.3