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
Following the depreciation and then disappearance of iteritems() in aid of items(), this doesn't work with pandas >= 2.0.
As shown by the following output when using pandas 1.5.3 :
/opt/venv/lib/python3.11/site-packages/fastplot/__init__.py:183: FutureWarning: iteritems is deprecated and will be removed in a future version. Use .items instead.
for i, l in data[c].iteritems():
The text was updated successfully, but these errors were encountered:
Hello,
Following the depreciation and then disappearance of
iteritems()
in aid ofitems()
, this doesn't work with pandas >= 2.0.As shown by the following output when using pandas 1.5.3 :
The text was updated successfully, but these errors were encountered: