From: Nabil Ghodbane Date: Thu, 22 Aug 2024 15:16:09 +0000 (+0200) Subject: embed scikitlearn-1.2.2 binary wheel if MPI full build X-Git-Tag: V9_13_0~5 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=896505f44583308848cc04ed00dff42069e0b37a;p=tools%2Fsat_salome.git embed scikitlearn-1.2.2 binary wheel if MPI full build --- diff --git a/products/compil_scripts/openturns-1.22.sh b/products/compil_scripts/openturns-1.22.sh index 1c7bc3f..e21d367 100755 --- a/products/compil_scripts/openturns-1.22.sh +++ b/products/compil_scripts/openturns-1.22.sh @@ -447,7 +447,11 @@ if [[ -d "$SOURCE_DIR/otfftw-0.14" ]]; then fi elif [ "${PYTHON_VERSION}" == "3.9" ]; then echo "INFO: install scikit-learn-1.2.2" - ${PYTHONBIN} -m pip install --cache-dir=$BUILD_DIR/cache/pip $SOURCE_DIR/scikit-learn-1.2.2/scikit-learn-1.2.2.tar.gz --no-deps + if [ -n "$SAT_HPC" ] && [ -n "$MPI_ROOT_DIR" ]; then + ${PYTHONBIN} -m pip install --cache-dir=$BUILD_DIR/cache/pip $SOURCE_DIR/scikit-learn-1.2.2/scikit_learn-1.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl --no-deps + else + ${PYTHONBIN} -m pip install --cache-dir=$BUILD_DIR/cache/pip $SOURCE_DIR/scikit-learn-1.2.2/scikit-learn-1.2.2.tar.gz --no-deps + fi if [ $? -ne 0 ] then echo "FATAL: could not install scikit-1.2.2"