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
With current pandas, there is a FutureWarning triggered by line 607 in ``pykrakenapi.py:
.../venv/lib/python3.8/site-packages/pykrakenapi/pykrakenapi.py:607: FutureWarning: In a future version, `df.iloc[:, i] = newvals` will attempt to set the values inplace instead of always setting a new array. To retain the old behavior, use either `df[df.columns[i]] = newvals` or, if columns are non-unique, `df.isetitem(i, newvals)`
ohlc.loc[:, col] = ohlc[col].astype(float)
With current pandas, there is a FutureWarning triggered by line 607 in ``pykrakenapi.py:
A working solution is to replace
with
There are more similar lines like this that will require fixing.
The text was updated successfully, but these errors were encountered: