From 8c3f39ec786032fb002f4bcaae1cacbc2fc39311 Mon Sep 17 00:00:00 2001 From: Oleksandr Pavlyk Date: Thu, 11 Jan 2024 08:30:47 -0600 Subject: [PATCH] Allow for newer version of DPC++ compiler --- conda-recipe/meta.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/conda-recipe/meta.yaml b/conda-recipe/meta.yaml index fee3c311c6..af5046ae65 100644 --- a/conda-recipe/meta.yaml +++ b/conda-recipe/meta.yaml @@ -1,5 +1,6 @@ {% set required_compiler_version = "2024.0" %} -{% set max_compiler_version = "2024.0.1" %} +{% set excluded_compiler_version1 = "2024.0.1" %} +{% set excluded_compiler_version2 = "2024.0.2" %} package: name: dpctl @@ -17,7 +18,7 @@ build: requirements: build: - {{ compiler('cxx') }} - - {{ compiler('dpcpp') }} >={{ required_compiler_version }},<{{ max_compiler_version }} # [not osx] + - {{ compiler('dpcpp') }} >={{ required_compiler_version }},!={{ excluded_compiler_version1 }},!={{ excluded_compiler_version2 }} # [not osx] - sysroot_linux-64 >=2.28 # [linux] host: - setuptools