diff --git a/.ci/pipeline/build-and-test-lnx.yml b/.ci/pipeline/build-and-test-lnx.yml index abcaf3f176..4df8ec53cd 100644 --- a/.ci/pipeline/build-and-test-lnx.yml +++ b/.ci/pipeline/build-and-test-lnx.yml @@ -63,6 +63,7 @@ steps: if [ $(echo $(PYTHON_VERSION) | grep '3.9\|3.10\|3.11\|3.12') ] && [ $(SKLEARN_VERSION) != "1.0" ] && [ -z ${NO_DPC} ]; then pip install dpctl==$DPCTL_VERSION dpnp==$DPNP_VERSION; fi if [ -z "${NO_DPC}" ]; then pip install dpcpp-cpp-rt==$DPCPP_RT_VERSION; fi conda list + python -c "import sklearn; sklearn.show_versions()" env: NO_DPC: ${{ variables.NO_DPC }} DPCTL_VERSION: 0.21.0 diff --git a/.ci/pipeline/build-and-test-mac.yml b/.ci/pipeline/build-and-test-mac.yml index 447932633e..5ea7c7f1a8 100644 --- a/.ci/pipeline/build-and-test-mac.yml +++ b/.ci/pipeline/build-and-test-mac.yml @@ -42,6 +42,7 @@ steps: pip install --upgrade -r requirements-test.txt pip install $(python .ci/scripts/get_compatible_scipy_version.py) conda list + python -c "import sklearn; sklearn.show_versions()" displayName: 'Install testing requirements' - script: | source activate CB diff --git a/.ci/pipeline/build-and-test-win.yml b/.ci/pipeline/build-and-test-win.yml index e08d7eadac..b336606f5b 100644 --- a/.ci/pipeline/build-and-test-win.yml +++ b/.ci/pipeline/build-and-test-win.yml @@ -52,6 +52,7 @@ steps: for /f "delims=" %%c in ('python s\.ci\scripts\get_compatible_scipy_version.py') do set SCIPY_VERSION=%%c pip install %SCIPY_VERSION% conda list + python -c "import sklearn; sklearn.show_versions()" displayName: 'Install testing requirements' - script: | call activate CB