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

   ### Describe the bug, including details regarding any error messages, 
version, and platform.
   
   See reproducible example:
   
   ```
   import pandas as pd
   import uuid
   import pyarrow as pa
   
   # Create a DataFrame with UUID objects
   data = {'MUID': [uuid.uuid4() for _ in range(5)],
           'Data': range(5)}
   
   df = pd.DataFrame(data)
   
   # Convert the DataFrame to an Arrow table
   table = pa.Table.from_pandas(df)
   
   >>> ArrowInvalid: ("Could not convert 
UUID('ffb0c97b-7a25-4fce-9e4e-645715ca5ae8') with type UUID: did not recognize 
Python value type when inferring an Arrow data type", 'Conversion failed for 
column MUID with type object')
   ``` 
   
   ### Component(s)
   
   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: issues-unsubscr...@arrow.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to