]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
make-dist: drop Python 2/3 autoselect
authorNathan Cutler <ncutler@suse.com>
Fri, 27 Dec 2019 09:55:21 +0000 (10:55 +0100)
committerNathan Cutler <ncutler@suse.com>
Fri, 27 Dec 2019 09:55:57 +0000 (10:55 +0100)
virtualenv will prefer Python 3 over Python 2 if both are available.

Signed-off-by: Nathan Cutler <ncutler@suse.com>
make-dist

index d3ae89f3180493a6b847d523a815757810d5364a..7a6991b4569d594a6cbbf1a587ed386bbed15800 100755 (executable)
--- a/make-dist
+++ b/make-dist
@@ -68,25 +68,11 @@ download_boost() {
     rm -rf src/boost
 }
 
-_python_autoselect() {
-  python_command=
-  for interpreter in python2.7 python3 ; do
-    type $interpreter > /dev/null 2>&1 || continue
-    python_command=$interpreter
-    break
-  done
-  if [ -z "$python_command" ] ; then
-    echo "Could not find a suitable python interpreter! Bailing out."
-    exit 1
-  fi
-  echo $python_command
-}
-
 build_dashboard_frontend() {
   CURR_DIR=`pwd`
   TEMP_DIR=`mktemp -d`
 
-  $CURR_DIR/src/tools/setup-virtualenv.sh --python=$(_python_autoselect) $TEMP_DIR
+  $CURR_DIR/src/tools/setup-virtualenv.sh $TEMP_DIR
   $TEMP_DIR/bin/pip install nodeenv
   $TEMP_DIR/bin/nodeenv -p --node=10.16.0
   cd src/pybind/mgr/dashboard/frontend