Skip to content

Commit 6ba1a02

Browse files
DEV: removing dpctl from CI build scripts (#1765)
1 parent fca2f14 commit 6ba1a02

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.ci/pipeline/build-and-test-lnx.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ steps:
2424
displayName: "System info"
2525
- script: |
2626
conda update -y -q conda
27-
if [ $(echo $(PYTHON_VERSION) | grep '3.9\|3.10') ]; then export DPCPP_PACKAGE="dpctl=0.15.0"; else export DPCPP_PACKAGE=""; fi
28-
conda create -q -y -n CB -c conda-forge -c intel python=$(PYTHON_VERSION) intel::dal-devel mpich pyyaml $DPCPP_PACKAGE "dpcpp-cpp-rt=2024.0.2"
27+
conda create -q -y -n CB -c conda-forge -c intel python=$(PYTHON_VERSION) intel::dal-devel mpich pyyaml "dpcpp-cpp-rt=2024.0.2"
2928
displayName: "Conda create"
3029
- script: |
3130
. /usr/share/miniconda/etc/profile.d/conda.sh
@@ -47,7 +46,7 @@ steps:
4746
bash .ci/scripts/setup_sklearn.sh $(SKLEARN_VERSION)
4847
pip install --upgrade -r requirements-test.txt
4948
pip install $(python .ci/scripts/get_compatible_scipy_version.py)
50-
if [ $(echo $(PYTHON_VERSION) | grep '3.9\|3.10') ]; then conda install -q -y -c intel dpnp=0.13.0; fi
49+
if [ $(echo $(PYTHON_VERSION) | grep '3.9\|3.10') ]; then conda install -q -y -c intel dpctl=0.15.0 dpnp=0.13.0; fi
5150
pip list
5251
displayName: "Install testing requirements"
5352
- script: |

0 commit comments

Comments
 (0)