File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -448,6 +448,8 @@ jobs:
448
448
${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-
449
449
- name : Install example requirements
450
450
shell : bash -l {0}
451
+ env :
452
+ DPCPP_CMPLR : dpcpp_linux-64">=2024.0.0,<2024.0.1"
451
453
run : |
452
454
CHANNELS="${{ env.CHANNELS }}"
453
455
. $CONDA/etc/profile.d/conda.sh
@@ -456,7 +458,7 @@ jobs:
456
458
conda install -n examples -y ninja $CHANNELS || exit 1
457
459
conda install -n examples -y pybind11 cython scikit-build $CHANNELS || exit 1
458
460
conda install -n examples -y mkl-dpcpp mkl-devel-dpcpp dpcpp_cpp_rt $CHANNELS || exit 1
459
- conda create -y -n build_env $CHANNELS gcc_linux-64 gxx_linux-64 dpcpp_linux-64 sysroot_linux-64">=2.28"
461
+ conda create -y -n build_env $CHANNELS gcc_linux-64 gxx_linux-64 ${{ env.DPCPP_CMPLR }} sysroot_linux-64">=2.28"
460
462
- name : Install dpctl
461
463
shell : bash -l {0}
462
464
run : |
Original file line number Diff line number Diff line change 1
1
{% set required_compiler_version = "2024.0" %}
2
+ {% set max_compiler_version = "2024.0.1" %}
2
3
3
4
package :
4
5
name : dpctl
16
17
requirements :
17
18
build :
18
19
- {{ compiler('cxx') }}
19
- - {{ compiler('dpcpp') }} >={{ required_compiler_version }} # [not osx]
20
+ - {{ compiler('dpcpp') }} >={{ required_compiler_version }},<{{ max_compiler_version }} # [not osx]
20
21
- sysroot_linux-64 >=2.28 # [linux]
21
22
host :
22
23
- setuptools
You can’t perform that action at this time.
0 commit comments