From 188427a701b67adb48f5894650fa2df98e81bde7 Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Mon, 16 Feb 2026 13:21:05 -0800 Subject: [PATCH 1/2] Remove unused oneMKL statistics dependency --- conda-recipe/meta.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/conda-recipe/meta.yaml b/conda-recipe/meta.yaml index 5ee519fc921..956ff6db013 100644 --- a/conda-recipe/meta.yaml +++ b/conda-recipe/meta.yaml @@ -49,7 +49,6 @@ requirements: - {{ pin_compatible('onemkl-sycl-dft', min_pin='x.x', max_pin='x') }} - {{ pin_compatible('onemkl-sycl-lapack', min_pin='x.x', max_pin='x') }} - {{ pin_compatible('onemkl-sycl-rng', min_pin='x.x', max_pin='x') }} - - {{ pin_compatible('onemkl-sycl-stats', min_pin='x.x', max_pin='x') }} - {{ pin_compatible('onemkl-sycl-vm', min_pin='x.x', max_pin='x') }} - numpy - intel-gpu-ocl-icd-system From 29ca190bc68346755c17b8fe572a6314545f210f Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Tue, 17 Feb 2026 01:40:52 -0800 Subject: [PATCH 2/2] Add PR to the changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e98a6763c4a..f7be91dfd94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -64,6 +64,7 @@ Also, that release drops support for Python 3.9, making Python 3.10 the minimum * Removed the obsolete interface from DPNP to Numba JIT [#2647](https://github.com/IntelPython/dpnp/pull/2647) * Removed the `newshape` parameter from `dpnp.reshape`, which has been deprecated since dpnp 0.17.0. Pass it positionally or use `shape=` on newer versions [#2670](https://github.com/IntelPython/dpnp/pull/2670) * Removed unused `pytest` configuration from `pyproject.toml` [#2729](https://github.com/IntelPython/dpnp/pull/2729) +* Dropped a conda run dependency on `onemkl-sycl-stats` package [#2771](https://github.com/IntelPython/dpnp/pull/2771) ### Fixed