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
There is a new pandas release (2.0) and then the library's test
cases start failing with errors like "TypeError: DataFrame.drop()
takes from 1 to 2 positional arguments but 3 were given". Per
investigation the rootcause is that the pandas 2.0 deprecated
non-keyword arguments of several methods including drop(), and
it also deprecated Series.append. The commit fixes the problems
by
1. using keyword arguments for the drop method
2. using pandas.concat() to replace the Series.append() method
Internal tracking ticket: https://tiny.amazon.com/kzvlpcax
0 commit comments