DataFrames that have Timestamp / Date columns raise an exception in connect_source_pandas.
This is because these types aren't JSON serializable in python and raise the following error:
TypeError: Object of type Timestamp is not JSON serializable
One way to solve this is to cast such types to str using df["col"].astype(str).