Skip to content

Commit

Permalink
Clarify append deprecation notice. (#10930)
Browse files Browse the repository at this point in the history
This clarifies that the deprecated `append` method is replaced by a top-level function `cudf.concat`. This has caused some user confusion, because it's not just a name change (`DataFrame.concat` doesn't exist).

Authors:
  - Bradley Dice (https://github.com/bdice)

Approvers:
  - GALI PREM SAGAR (https://github.com/galipremsagar)
  - https://github.com/brandon-b-miller

URL: #10930
  • Loading branch information
bdice authored May 23, 2022
1 parent 35f9d5e commit b053618
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/cudf/cudf/core/indexed_frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -2326,8 +2326,8 @@ def _append(
self, other, ignore_index=False, verify_integrity=False, sort=None
):
warnings.warn(
"append is deprecated and will be removed in a future version. "
"Use concat instead.",
"The append method is deprecated and will be removed in a future "
"version. Use cudf.concat instead.",
FutureWarning,
)
if verify_integrity not in (None, False):
Expand Down

0 comments on commit b053618

Please sign in to comment.