-
Notifications
You must be signed in to change notification settings - Fork 4k
Closed
Description
Describe the bug, including details regarding any error messages, version, and platform.
This is an upstream report of pandas-dev/pandas#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