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
When attempting to import goes2go with pandas 2.1.1, I am greeted with
File timedeltas.pyx:1820, in pandas._libs.tslibs.timedeltas.Timedelta.__new__()
File timedeltas.pyx:650, in pandas._libs.tslibs.timedeltas.parse_timedelta_string()
File timedeltas.pyx:698, in pandas._libs.tslibs.timedeltas.timedelta_from_spec()
ValueError: Units 'M', 'Y' and 'y' do not represent unambiguous timedelta values and are not supported.
It looks like that was deprecated in pandas awhile ago, unless I have missed something.
The text was updated successfully, but these errors were encountered:
Okay, I still have to look into where this all occurs in your code, but definitely the config.toml file that is generated is not compliant. Changing it there seemed to fix those same errors on another system using nearesttime. According to pandas documentation (at least for 2.4.1), 'H', 'M' are not valid to use for timedeltas, and that should probably be changed to 'h' or 'hour' and 'm' or 'min' or the like.
When attempting to import goes2go with pandas 2.1.1, I am greeted with
It looks like that was deprecated in pandas awhile ago, unless I have missed something.
The text was updated successfully, but these errors were encountered: