CADWRDeltaModeling / dms_datastore

Data download and management tools for continuous data for Pandas. See documentation https://cadwrdeltamodeling.github.io/dms_datastore/
https://cadwrdeltamodeling.github.io/dms_datastore/
MIT License
1 stars 0 forks source link

`infer_datetime_format` warning from `csv_retrieve_ts` #5

Closed kjnam closed 11 months ago

kjnam commented 11 months ago

Reported on behalf of Hans

Description

Every time csv_retrieve_ts from dms_datastore. read_ts is run, we get the following warning message:

dms_datastore/dms_datastore/read_ts.py:972: FutureWarning: The argument 'infer_datetime_format' is deprecated and will be removed in a future version. A strict version of it is now the default, see...
kjnam commented 11 months ago

This is a warning from Pandas Version 2. See https://pandas.pydata.org/docs/reference/api/pandas.to_datetime.html. The argument is removed by https://github.com/CADWRDeltaModeling/dms_datastore/commit/b54c2599dd803db5b4379664cc0b9743431eea35.

HansKimDWR commented 11 months ago

Great! Thank you!