Using polars 0.20.30
on Python 3.8.10
on Ubuntu 20.04. Here is the sample code.
from pytz import timezone
sample=timezone(zone='Asia/Singapore').localize(datetime(year=2024, month=6, day=1, hour=14, minute=38, second=5))
pl.Series(values=[sample])
# Gives datetime[μs, UTC]
# 2024-06-01 06:38:05 UTC
So it seems polars is forcefully converting to UTC and storing it as UTC time. How can we make polars store the timezone aware datetime object in my timezone without doing its own conversion?