diff --git a/.ci/pipeline/build-and-test-lnx.yml b/.ci/pipeline/build-and-test-lnx.yml index e785f7c5a6..f2b1568b11 100644 --- a/.ci/pipeline/build-and-test-lnx.yml +++ b/.ci/pipeline/build-and-test-lnx.yml @@ -37,7 +37,7 @@ steps: conda activate CB if [ -z "${DALROOT}" ]; then conda install -q -y -c conda-forge "dal-devel>=2025.6.1"; fi pip install -r dependencies-dev - pip list + conda list env: DALROOT: ${{ variables.DALROOT }} displayName: "Install develop requirements" @@ -62,7 +62,7 @@ steps: # dpep installation is set to pypi to avoid conflict of numpy versions from pip and conda 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 - pip list + conda list 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 030d60f665..447932633e 100644 --- a/.ci/pipeline/build-and-test-mac.yml +++ b/.ci/pipeline/build-and-test-mac.yml @@ -29,7 +29,7 @@ steps: - script: | source activate CB pip install -r dependencies-dev - pip list + conda list displayName: 'Install develop requirements' - script: | source activate CB @@ -41,7 +41,7 @@ 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) - pip list + conda list 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 757aa4c497..e08d7eadac 100644 --- a/.ci/pipeline/build-and-test-win.yml +++ b/.ci/pipeline/build-and-test-win.yml @@ -25,8 +25,8 @@ steps: pip install --upgrade setuptools pip install cpufeature pip install -r dependencies-dev - pip list if not defined DALROOT conda install -q -y -c conda-forge "dal-devel>=2025.6.1" + conda list displayName: 'Install develop requirements' env: DALROOT: ${{ variables.DALROOT }} @@ -51,7 +51,7 @@ steps: cd .. for /f "delims=" %%c in ('python s\.ci\scripts\get_compatible_scipy_version.py') do set SCIPY_VERSION=%%c pip install %SCIPY_VERSION% - pip list + conda list displayName: 'Install testing requirements' - script: | call activate CB