[issue44460] python crashes when pandas reading parquet

2021-06-19 Thread Steve Dower
Steve Dower added the comment: Python 3.6 is no longer supported by us, so unless this occurs with a newer version (which apparently it does not), we're not going to be able to look into it. If this is critical to you, you probably want to get in touch with Anaconda or ActiveState to see if

[issue44460] python crashes when pandas reading parquet

2021-06-19 Thread Andrey Brykin
Andrey Brykin added the comment: pandas version is 1.1.5 -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue44460] python crashes when pandas reading parquet

2021-06-19 Thread Andrey Brykin
New submission from Andrey Brykin : Python crashes when running this code (I attached the error message screenshot): import pandas as pd d = {'col1': [[0.] * 25] * 2560} df = pd.DataFrame(data=d) df.to_parquet('data.parquet') for j in range(15): table = pd.read_parquet('data.parquet') There