WillAyd opened a new issue, #40633: URL: https://github.com/apache/arrow/issues/40633
### Describe the bug, including details regarding any error messages, version, and platform. This is an upstream report of https://github.com/pandas-dev/pandas/issues/56292 I noticed when running the pandas test suite I was getting this error: ``` pandas/tests/io/test_orc.py::test_orc_reader_basic terminate called after throwing an instance of 'orc::TimezoneError' what(): Can't open /usr/share/zoneinfo/US/Pacific Fatal Python error: Aborted Current thread 0x00007eff1a912780 (most recent call first): ``` The workaround is to create that timezone file: ``` $ sudo mkdir -p /usr/share/zoneinfo/US $ sudo ln -s /usr/share/zoneinfo/America/Los_Angeles /usr/share/zoneinfo/US/Pacific ``` Although I think the error should be handled more gracefully than via abort ### 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
