From 04b5fa88754b8cbf66b19799fd8caa859645643a Mon Sep 17 00:00:00 2001 From: Samuel Aboderin Date: Fri, 5 Jun 2026 17:03:33 +0100 Subject: [PATCH] minimal reproducer --- python/pyarrow/tests/test_schema.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/python/pyarrow/tests/test_schema.py b/python/pyarrow/tests/test_schema.py index 029e14ca1628..e7fe40ec6c9f 100644 --- a/python/pyarrow/tests/test_schema.py +++ b/python/pyarrow/tests/test_schema.py @@ -52,6 +52,11 @@ def test_type_integers(): assert str(t) == name +@pytest.mark.pandas +def test_extension_type_to_pandas_dtype(): + pa.fixed_shape_tensor(pa.float32(),[2,2]).to_pandas_dtype() + + @pytest.mark.pandas def test_type_to_pandas_dtype(): M8 = np.dtype('datetime64[ms]')