From 0653dd7b9af99b1ad864d499dc21eb5b45bf5025 Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Mon, 4 May 2026 14:11:04 -0700 Subject: [PATCH 1/2] Bump required DPC++ compiler and OneMKL versions to 2026.0 release --- .github/workflows/conda-package.yml | 4 ++-- conda-recipe/meta.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/conda-package.yml b/.github/workflows/conda-package.yml index 6d1f2e5d00ee..3d9a994ead4b 100644 --- a/.github/workflows/conda-package.yml +++ b/.github/workflows/conda-package.yml @@ -93,13 +93,13 @@ jobs: continue-on-error: true run: conda-build --no-test --python ${{ matrix.python }} --numpy 2.0 ${{ env.channels-list }} conda-recipe env: - MAX_BUILD_CMPL_MKL_VERSION: '2026.0a0' + MAX_BUILD_CMPL_MKL_VERSION: '2027.0a0' - name: ReBuild conda package if: steps.build_conda_pkg.outcome == 'failure' run: conda-build --no-test --python ${{ matrix.python }} --numpy 2.0 ${{ env.channels-list }} conda-recipe env: - MAX_BUILD_CMPL_MKL_VERSION: '2026.0a0' + MAX_BUILD_CMPL_MKL_VERSION: '2027.0a0' - name: Upload artifact uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 diff --git a/conda-recipe/meta.yaml b/conda-recipe/meta.yaml index 956ff6db0133..525acc6fbd25 100644 --- a/conda-recipe/meta.yaml +++ b/conda-recipe/meta.yaml @@ -1,5 +1,5 @@ {% set max_compiler_and_mkl_version = environ.get("MAX_BUILD_CMPL_MKL_VERSION", "2027.0a0") %} -{% set required_compiler_and_mkl_version = "2025.0" %} +{% set required_compiler_and_mkl_version = "2026.0" %} {% set required_dpctl_version = "0.22.0*" %} {% set pyproject = load_file_data('pyproject.toml') %} From 2cc94a6c26eb389dc9ef43ab4843fa77f6be85cb Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Mon, 4 May 2026 14:21:14 -0700 Subject: [PATCH 2/2] Update dpctl pinning --- conda-recipe/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conda-recipe/meta.yaml b/conda-recipe/meta.yaml index 525acc6fbd25..f15818fdf398 100644 --- a/conda-recipe/meta.yaml +++ b/conda-recipe/meta.yaml @@ -1,6 +1,6 @@ {% set max_compiler_and_mkl_version = environ.get("MAX_BUILD_CMPL_MKL_VERSION", "2027.0a0") %} {% set required_compiler_and_mkl_version = "2026.0" %} -{% set required_dpctl_version = "0.22.0*" %} +{% set required_dpctl_version = "0.22.0" %} {% set pyproject = load_file_data('pyproject.toml') %} {% set py_build_deps = pyproject.get('build-system', {}).get('requires', []) %}