Open
Description
Currently warnings are only emitted when the length of a tuple is greater than 1. From this comment in PR where the deprecation was implemented, there was some confusion as to the behavior of df.groupby('a')['b']
vs df.groupby('a')[('b', )]
. The former is the SeriesGroupBy that the comment refers to where key
is a string, the latter should still be deprecated.