Skip to content

Commit 28a231e

Browse files
Merge pull request #1739 from IntelPython/backport-compiler-pinning
Require 2024.2.0 DPC++ compiler
2 parents a365cff + c0df9e4 commit 28a231e

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

.github/workflows/conda-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ jobs:
486486
- name: Install example requirements
487487
shell: bash -l {0}
488488
env:
489-
DPCPP_CMPLR: dpcpp_linux-64">=2024.1"
489+
DPCPP_CMPLR: dpcpp_linux-64">=2024.2"
490490
run: |
491491
CHANNELS="${{ env.CHANNELS }}"
492492
. $CONDA/etc/profile.d/conda.sh

conda-recipe/meta.yaml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
{% set required_compiler_version = "2024.0" %}
2-
{% set excluded_compiler_version1 = "2024.0.1" %}
3-
{% set excluded_compiler_version2 = "2024.0.2" %}
4-
{% set excluded_compiler_version3 = "2024.0.3" %}
1+
{% set required_compiler_version = "2024.2.0" %}
52

63
{% set pyproject = load_file_data('pyproject.toml') %}
74
{% set py_build_deps = pyproject.get('build-system', {}).get('requires', []) %}
@@ -23,8 +20,7 @@ requirements:
2320
# TODO: keep in sync with /pyproject.toml
2421
build:
2522
- {{ compiler('cxx') }}
26-
- {{ compiler('dpcpp') }} >={{ required_compiler_version }},!={{ excluded_compiler_version1 }},!={{ excluded_compiler_version2 }},!={{ excluded_compiler_version3 }} # [win]
27-
- {{ compiler('dpcpp') }} >={{ required_compiler_version }},!={{ excluded_compiler_version1 }},!={{ excluded_compiler_version2 }} # [linux]
23+
- {{ compiler('dpcpp') }} {{ required_compiler_version }}
2824
- sysroot_linux-64 >=2.28 # [linux]
2925
host:
3026
- python

0 commit comments

Comments
 (0)