From 4d89aa1003d43f65565d2e15bc4cfe5fe419a9b8 Mon Sep 17 00:00:00 2001 From: Chris Ninham <61634310+Nin17@users.noreply.github.com> Date: Wed, 26 Aug 2026 17:07:27 +0200 Subject: [PATCH 1/2] CI: add dpnp --- .github/workflows/tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b2aa2348..02e2b109 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -43,6 +43,7 @@ jobs: if [ "${{ matrix.numpy-version }}" == "dev" ]; then python -m pip install numpy --pre --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple python -m pip install dask[array] jax[cpu] + python -m pip install --index-url https://software.repos.intel.com/python/pypi dpnp if ["${{ matrix.python-version }}" != "3.14]; then python -m pip install sparse ndonnx fi @@ -53,6 +54,7 @@ jobs: else python -m pip install numpy python -m pip install dask[array] jax[cpu] + python -m pip install --index-url https://software.repos.intel.com/python/pypi dpnp if ["${{ matrix.python-version }}" != "3.14]; then python -m pip install sparse ndonnx fi From 61c5e342d4c49d63414cda229b926c0080efb9da Mon Sep 17 00:00:00 2001 From: Chris Ninham <61634310+Nin17@users.noreply.github.com> Date: Wed, 26 Aug 2026 19:05:00 +0200 Subject: [PATCH 2/2] CI: missing close quotes --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 02e2b109..0e207a43 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -44,7 +44,7 @@ jobs: python -m pip install numpy --pre --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple python -m pip install dask[array] jax[cpu] python -m pip install --index-url https://software.repos.intel.com/python/pypi dpnp - if ["${{ matrix.python-version }}" != "3.14]; then + if ["${{ matrix.python-version }}" != "3.14"]; then python -m pip install sparse ndonnx fi elif [ "${{ matrix.numpy-version }}" == "1.22" ]; then @@ -55,7 +55,7 @@ jobs: python -m pip install numpy python -m pip install dask[array] jax[cpu] python -m pip install --index-url https://software.repos.intel.com/python/pypi dpnp - if ["${{ matrix.python-version }}" != "3.14]; then + if ["${{ matrix.python-version }}" != "3.14"]; then python -m pip install sparse ndonnx fi fi