diff --git a/dpnp/tests/test_product.py b/dpnp/tests/test_product.py index 707257f84344..b2a4514a57e8 100644 --- a/dpnp/tests/test_product.py +++ b/dpnp/tests/test_product.py @@ -843,8 +843,7 @@ def test_dtype_matrix(self, dt_in1, dt_in2, dt_out, shape1, shape2): assert_raises(TypeError, dpnp.matmul, ia, ib, out=iout) assert_raises(TypeError, numpy.matmul, a, b, out=out) - # TODO: include numpy-2.3 when numpy-issue-29164 is resolved - @testing.with_requires("numpy<2.3") + @testing.with_requires("numpy!=2.3.0") @pytest.mark.parametrize("dtype", _selected_dtypes) @pytest.mark.parametrize("order1", ["C", "F", "A"]) @pytest.mark.parametrize("order2", ["C", "F", "A"]) @@ -882,8 +881,7 @@ def test_order(self, dtype, order1, order2, order, shape1, shape2): assert result.flags.f_contiguous == expected.flags.f_contiguous assert_dtype_allclose(result, expected) - # TODO: include numpy-2.3 when numpy-issue-29164 is resolved - @testing.with_requires("numpy<2.3") + @testing.with_requires("numpy!=2.3.0") @pytest.mark.parametrize("dtype", _selected_dtypes) @pytest.mark.parametrize( "stride", diff --git a/dpnp/tests/third_party/cupy/math_tests/test_matmul.py b/dpnp/tests/third_party/cupy/math_tests/test_matmul.py index 138683cae325..3057e6343a82 100644 --- a/dpnp/tests/third_party/cupy/math_tests/test_matmul.py +++ b/dpnp/tests/third_party/cupy/math_tests/test_matmul.py @@ -99,8 +99,7 @@ def test_cupy_matmul(self, xp, dtype1, dtype2): ) class TestMatmulOut(unittest.TestCase): - # TODO: include numpy-2.3 when numpy-issue-29164 is resolved - @testing.with_requires("numpy<2.3") + @testing.with_requires("numpy!=2.3.0") # no_int8=True is added to avoid overflow @testing.for_all_dtypes(name="dtype1", no_int8=True) @testing.for_all_dtypes(name="dtype2", no_int8=True)