jorisvandenbossche commented on issue #37853: URL: https://github.com/apache/arrow/issues/37853#issuecomment-1733407174
Context: the parquet cross-compat test appears to be failing when enabled in the conda recipe tests: https://github.com/apache/arrow/pull/37624#discussion_r1328153969 And I can actually reproduce this locally, both with running our test, as with the following small snippet: ``` In [1]: df = pd.DataFrame({"col": [True, False, True]}) In [2]: df.to_parquet("test_bool.parquet", engine="pyarrow") In [3]: pd.read_parquet("test_bool.parquet", engine="pyarrow") Out[3]: col 0 True 1 False 2 True In [4]: pd.read_parquet("test_bool.parquet", engine="fastparquet") Out[4]: col 0 False 1 False 2 False In [5]: pa.__version__ Out[5]: '14.0.0.dev183+g7b14b2b27.d20230925' In [6]: import fastparquet; fastparquet.__version__ Out[6]: '2023.8.0' ``` -- 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]
