Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
stinodego committed Nov 22, 2023
1 parent 3a01782 commit 045182b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions py-polars/polars/dataframe/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -10481,12 +10481,12 @@ def replace_at_idx(self, index: int, new_column: Series) -> Self:
"""
return self.replace_column(index, new_column)

@deprecate_renamed_function("equals", version="0.20.0")
@deprecate_renamed_function("equals", version="0.19.16")
def frame_equal(self, other: DataFrame, *, null_equal: bool = True) -> bool:
"""
Check whether the DataFrame is equal to another DataFrame.
.. deprecated:: 0.20.0
.. deprecated:: 0.19.16
This method has been renamed to :func:`equals`.
Parameters
Expand Down
4 changes: 2 additions & 2 deletions py-polars/polars/series/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -7172,14 +7172,14 @@ def map_dict(
"""
return self.replace(mapping, default=default, return_dtype=return_dtype)

@deprecate_renamed_function("equals", version="0.20.0")
@deprecate_renamed_function("equals", version="0.19.16")
def series_equal(
self, other: Series, *, null_equal: bool = True, strict: bool = False
) -> bool:
"""
Check whether the Series is equal to another Series.
.. deprecated:: 0.20.0
.. deprecated:: 0.19.16
This method has been renamed to :meth:`equals`.
Parameters
Expand Down

0 comments on commit 045182b

Please sign in to comment.