Skip to content
Draft
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; fi
pip install -r dependencies-dev
pip list
conda list
env:
DALROOT: ${{ variables.DALROOT }}
displayName: "Install develop requirements"
Expand All @@ -64,7 +64,7 @@ steps:
if [ $(echo $(PYTHON_VERSION) | grep '3.9\|3.10\|3.11') ] && [ $(SKLEARN_VERSION) != "1.0" ] && [ -z ${NO_DPC} ]; then pip install dpctl==0.18.* dpnp==0.16.*; fi
# issues exist with conda-forge dpcpp-cpp-rt=2025.1.1 it is needed to use the dpc build
if [ -z "${NO_DPC}" ]; then pip install dpcpp-cpp-rt==2025.1.*; fi
pip list
conda list
env:
NO_DPC: ${{ variables.NO_DPC }}
displayName: "Install testing requirements"
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,7 +25,7 @@ steps:
pip install --upgrade setuptools
pip install cpufeature
pip install -r dependencies-dev
pip list
conda list
if not defined DALROOT conda install -q -y -c conda-forge dal-devel
displayName: 'Install develop requirements'
env:
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