20846: Remove module versions print
authorBrett Smith <brett.smith@curii.com>
Thu, 4 Jan 2024 20:58:41 +0000 (15:58 -0500)
committerBrett Smith <brett.smith@curii.com>
Thu, 4 Jan 2024 20:58:41 +0000 (15:58 -0500)
`pip install` writes this information at the end of the process. Writing
it again ourselves is redundant verbosity.

Arvados-DCO-1.1-Signed-off-by: Brett Smith <brett.smith@curii.com>

build/run-library.sh

index c8564f5ac798231eb2f35acfe86956d708c720f9..17ac4586a067b597a2f4981fa366881390f2f90d 100755 (executable)
@@ -722,11 +722,6 @@ fpm_build_virtualenv_worker () {
 " "$venv_py"
     exit 1
   fi
-  cat <<EOF
-pip version:        $("$venv_py" -m pip --version)
-setuptools version: $("$venv_py" -c 'import setuptools; print(setuptools.__version__)')
-wheel version:      $("$venv_dir/bin/wheel" version)
-EOF
 
   # filter a useless warning (when building the cwltest package) from the stderr output
   if ! "$venv_py" setup.py $DASHQ_UNLESS_DEBUG sdist 2> >(grep -v 'warning: no previously-included files matching'); then