```python ts = pd.Timestamp(2999, 1, 1) ts2 = ts.tz_localize("US/Pacific") dtype = pd.DatetimeTZDtype("us", "US/Pacific") >>> ser = pd.Series([ts2], dtype=dtype) [...] pandas._libs.tslibs.np_datetime.OutOfBoundsDatetime: Cannot cast 2999-01-01 00:00:00-08:00 to unit='ns' without overflow. ```