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
- numpy changed how timestamps are parsed into datetime64
- old conversion relied on the units being `ns`
- this caused the conversion from `ms` to result in many 0 time deltas
- dividing by 0 produced `inf` and attempting `int(inf)` raised an Error
- now use numpy API to convert to `s`
0 commit comments