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
API/BUG: infer_dtype_from_scalar with non-nano pandas-dev/pandas#52212 changed how pandas is inferring dtypes from scalars, which results in issues when we partition by a datetime (loading the data eagerly will return a datetime64[ns], loading the data as dask data frame will return a datetime64[s]). I don't think we have tests for this by the way. That we could address by explicitly setting the units to nanoseconds here.
The text was updated successfully, but these errors were encountered:
Our CI jobs for pandas 2.0 are currently failing (see, e.g., here).
I see (at least) two issues with supporting pandas 2.0:
datetime64[ns]
, loading the data as dask data frame will return adatetime64[s]
). I don't think we have tests for this by the way. That we could address by explicitly setting the units to nanoseconds here.The text was updated successfully, but these errors were encountered: