Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .ci/pipeline/build-and-test-lnx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .ci/pipeline/build-and-test-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .ci/pipeline/build-and-test-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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
Expand Down
Loading