Skip to content

Commit 4f3b2de

Browse files
authored
Stay away from 2024.0.1 compiler package (#1643)
* Stay away from 2024.0.1 compiler package * Limit max compiler version while building docs
1 parent d090de9 commit 4f3b2de

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/build-sphinx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
9898
- name: Install dpnp dependencies
9999
run: |
100-
conda install numpy"<1.24" dpctl">=0.15.1dev2" mkl-devel-dpcpp onedpl-devel tbb-devel dpcpp_linux-64 \
100+
conda install numpy"<1.24" dpctl">=0.15.1dev2" mkl-devel-dpcpp onedpl-devel tbb-devel dpcpp_linux-64"<2024.0.1" \
101101
cmake cython pytest ninja scikit-build sysroot_linux-64">=2.28" ${{ env.CHANNELS }}
102102
103103
- name: Install cuPy dependencies

conda-recipe/meta.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{% set required_compiler_and_mkl_version = "2024.0" %}
2+
{% set max_compiler_version = "2024.0.1" %}
23
{% set required_dpctl_version = "0.15.1dev2" %}
34

45
package:
@@ -24,7 +25,7 @@ requirements:
2425
- scikit-build
2526
build:
2627
- {{ compiler('cxx') }}
27-
- {{ compiler('dpcpp') }} >={{ required_compiler_and_mkl_version }} # [not osx]
28+
- {{ compiler('dpcpp') }} >={{ required_compiler_and_mkl_version }},<{{ max_compiler_version }} # [not osx]
2829
- sysroot_linux-64 >=2.28 # [linux]
2930
run:
3031
- python

0 commit comments

Comments
 (0)