From 664f3edd2d5c9d79382894b5c3031fde48874ab5 Mon Sep 17 00:00:00 2001 From: Alexander Andreev Date: Thu, 14 Nov 2024 11:01:56 +0000 Subject: [PATCH] Add comment about dpep installation --- .ci/pipeline/build-and-test-lnx.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.ci/pipeline/build-and-test-lnx.yml b/.ci/pipeline/build-and-test-lnx.yml index 3e755374b6..09e425bf0d 100644 --- a/.ci/pipeline/build-and-test-lnx.yml +++ b/.ci/pipeline/build-and-test-lnx.yml @@ -48,6 +48,8 @@ steps: bash .ci/scripts/setup_sklearn.sh $(SKLEARN_VERSION) pip install --upgrade -r requirements-test.txt pip install $(python .ci/scripts/get_compatible_scipy_version.py) + # dpep installation is set to pypi to avoid conflict of numpy versions from pip and conda + # py312 is disabled due to segfault on exit of program with usage of dpctl if [ $(echo $(PYTHON_VERSION) | grep '3.9\|3.10\|3.11') ] && [ $(SKLEARN_VERSION) != "1.0" ]; then pip install dpctl==0.18.* dpnp==0.16.*; fi pip list displayName: "Install testing requirements"