From 7ad8972cb8e43febf891f77e7d78afc9db64ff01 Mon Sep 17 00:00:00 2001 From: Nikita Grigorian Date: Fri, 28 Mar 2025 15:53:29 -0700 Subject: [PATCH 1/2] Fix failure of Windows CI when dpctl is built with 2025.0.4 and run with 2025.1.0 Build with 2025.1.0 as a work-around --- .github/workflows/conda-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/conda-package.yml b/.github/workflows/conda-package.yml index 4726aeeff6..39ae8cfac3 100644 --- a/.github/workflows/conda-package.yml +++ b/.github/workflows/conda-package.yml @@ -124,7 +124,7 @@ jobs: OVERRIDE_INTEL_IPO: 1 # IPO requires more resources that GH actions VM provides run: | conda activate - conda build --no-test --python ${{ matrix.python }} --numpy 2 -c conda-forge --override-channels conda-recipe + conda build --no-test --python ${{ matrix.python }} --numpy 2.0 -c ${{ env.INTEL_CHANNEL }} -c conda-forge --override-channels conda-recipe - name: Upload artifact uses: actions/upload-artifact@v4.6.2 From 745ec433fb6443a6fb6e6a48a07b6221240abf39 Mon Sep 17 00:00:00 2001 From: Nikita Grigorian Date: Sat, 29 Mar 2025 23:29:17 -0700 Subject: [PATCH 2/2] Add a TODO comment to work-around for build_windows step of conda package workflow --- .github/workflows/conda-package.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/conda-package.yml b/.github/workflows/conda-package.yml index 39ae8cfac3..ba8e20455b 100644 --- a/.github/workflows/conda-package.yml +++ b/.github/workflows/conda-package.yml @@ -124,6 +124,7 @@ jobs: OVERRIDE_INTEL_IPO: 1 # IPO requires more resources that GH actions VM provides run: | conda activate + # TODO: roll back use of Intel channel when 2025.1 is available on conda-forge conda build --no-test --python ${{ matrix.python }} --numpy 2.0 -c ${{ env.INTEL_CHANNEL }} -c conda-forge --override-channels conda-recipe - name: Upload artifact