milesgranger opened a new issue, #14759:
URL: https://github.com/apache/arrow/issues/14759

   ### Describe the bug, including details regarding any error messages, 
version, and platform.
   
   The following raises a `numpy.VisibleDeprecationWarning`
   
   ```python
   import pyarrow as pa
   import pandas as pd
   
   s = (pa.array([[[1, 2, 3], [4]], None],
                         type=pa.large_list(pa.large_list(pa.int64())))
                .to_pandas())
   
   # Here, suspect it's due to how the numpy array is created
   # inside of `arrow_to_pandas.cc`?
   s.equals(pd.Series([[[1, 2, 3], [4]], None], dtype=object))
   ```
   
   ### Component(s)
   
   C++, Python


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to