pandas-datareader icon indicating copy to clipboard operation
pandas-datareader copied to clipboard

FutureWarning: In a future version of pandas all arguments of concat except for the argument 'objs' will be keyword-only

Open partev opened this issue 3 years ago • 1 comments

When using pandas_datareader to pull time series from tiingo I get the following error:

~/.local/lib/python3.9/site-packages/pandas_datareader/tiingo.py:234: FutureWarning: In a future version of pandas all arguments of concat except for the argument 'objs' will be keyword-only

return pd.concat(dfs, self._concat_axis)

I am using pandas-datareader 0.10.0

partev avatar Jan 04 '22 17:01 partev

It seems that today is the day, pandas released 2.0 and now concat doesn't accept those arguments anymore.

AlphaScorpii-dev avatar Apr 04 '23 05:04 AlphaScorpii-dev