jorisvandenbossche commented on pull request #10769: URL: https://github.com/apache/arrow/pull/10769#issuecomment-891217971
This might actually also be a "bug" in pandas. For basic usage of pandas, it only tries to import pyarrow (and some submodules) but doesn't actually do anything with it. So a failing import of pyarrow shouldn't mess with basic pandas usage. For the traceback in the JIRA, it seems that pandas checks that pyarrow can be imported (which can go fine, even if it's not properly (re)built)). And then once that goes fine, assumes it can import submodules like `pyarrow.compute`. But in *theory*, you can have a pyarrow install without the compute module enabled. So *maybe* pandas should still to the `pyarrow.compute` import inside a try/except. -- 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]
