Skip to content

Commit 681fa61

Browse files
authored
explicitely cast to datetime64[ns] (non-ns-compat) (#608)
1 parent 32a5eb0 commit 681fa61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mesmer/core/_data.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def _load_aod_obs(*, version, resample):
4343
dtype={"year": str, "month": str},
4444
)
4545

46-
time = pd.to_datetime(df.year + df.month, format="%Y%m")
46+
time = pd.to_datetime(df.year + df.month, format="%Y%m").astype("datetime64[ns]")
4747

4848
aod = xr.DataArray(df.aod.values, coords={"time": time}, name="aod")
4949

0 commit comments

Comments
 (0)