Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove squeeze argument from groupby #16312

Merged
merged 1 commit into from
Jul 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions python/cudf/cudf/core/dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -4306,7 +4306,6 @@ def groupby(
as_index=True,
sort=no_default,
group_keys=False,
squeeze=False,
observed=True,
dropna=True,
):
Expand All @@ -4317,7 +4316,6 @@ def groupby(
as_index,
sort,
group_keys,
squeeze,
observed,
dropna,
)
Expand Down
6 changes: 0 additions & 6 deletions python/cudf/cudf/core/indexed_frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -5249,7 +5249,6 @@ def groupby(
as_index=True,
sort=no_default,
group_keys=False,
squeeze=False,
observed=True,
dropna=True,
):
Expand All @@ -5259,11 +5258,6 @@ def groupby(
if axis not in (0, "index"):
raise NotImplementedError("axis parameter is not yet implemented")

if squeeze is not False:
raise NotImplementedError(
"squeeze parameter is not yet implemented"
)

if not observed:
raise NotImplementedError(
"observed parameter is not yet implemented"
Expand Down
2 changes: 0 additions & 2 deletions python/cudf/cudf/core/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -3368,7 +3368,6 @@ def groupby(
as_index=True,
sort=no_default,
group_keys=False,
squeeze=False,
observed=True,
dropna=True,
):
Expand All @@ -3379,7 +3378,6 @@ def groupby(
as_index,
sort,
group_keys,
squeeze,
observed,
dropna,
)
Expand Down
Loading