Skip to content

Commit 62162c5

Browse files
authored
Merge branch 'maintenance/0.19.x' into backport-gh-2642
2 parents 2420f9b + 51eb06b commit 62162c5

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ This release achieves `dpnp` compatibility with Python 3.14 and enables distribu
1212

1313
* Enabled support of Python 3.14 [#2631](https://github.com/IntelPython/dpnp/pull/2631)
1414

15+
### Fixed
16+
17+
* Updated tests for erf functions to pass with `scipy>=0.16.0` per each integer dtype [#2669](https://github.com/IntelPython/dpnp/pull/2669)
18+
1519

1620
## [0.19.0] - 2025-10-06
1721

dpnp/tests/test_special.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def test_basic(self, func, dt):
2929
expected = getattr(scipy.special, func)(a)
3030

3131
# scipy >= 0.16.0 returns float64, but dpnp returns float32
32-
to_float32 = dt in (dpnp.bool, dpnp.float16)
32+
to_float32 = dpnp.result_type(dt, dpnp.float32) == dpnp.float32
3333
only_type_kind = installed("scipy>=0.16.0") and to_float32
3434
assert_dtype_allclose(
3535
result, expected, check_only_type_kind=only_type_kind

0 commit comments

Comments
 (0)