You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Python 3.9 there's now a timezone database available. That means PyO3 can have native timezone conversion between chrono_tz::Tz and Python timezone objects.
Currently Polars has its own custom conversion code, which is likely slower than PyO3's since it's in Python. However, until Python 3.9 is the minimum supported version, this change can't happen. I.e. this should be revisited in November 2024 or later.
(See also #16158, where most of the relevant work was done.)
The text was updated successfully, but these errors were encountered:
Description
In Python 3.9 there's now a timezone database available. That means PyO3 can have native timezone conversion between
chrono_tz::Tz
and Pythontimezone
objects.Currently Polars has its own custom conversion code, which is likely slower than PyO3's since it's in Python. However, until Python 3.9 is the minimum supported version, this change can't happen. I.e. this should be revisited in November 2024 or later.
(See also #16158, where most of the relevant work was done.)
The text was updated successfully, but these errors were encountered: