DeprecationWarning: In a future version,df.iloc[:, i] = newvalswill attempt to set the values inplace instead of always setting a new array. To retain the old behavior, use eitherdf[df.columns[i]] = newvalsor, if columns are non-unique,df.isetitem(i, newvals)`
When i remove this part from the file loader.py the problem is no longer occuring. I'm using meteostat version 1.6.7
I'm getting the following error:
DeprecationWarning: In a future version,
df.iloc[:, i] = newvalswill attempt to set the values inplace instead of always setting a new array. To retain the old behavior, use either
df[df.columns[i]] = newvalsor, if columns are non-unique,
df.isetitem(i, newvals)`When i remove this part from the file loader.py the problem is no longer occuring. I'm using meteostat version 1.6.7
` # Force datetime conversion
if coerce_dates: