Skip to content

Commit

Permalink
python polars 0.13.8
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Mar 2, 2022
1 parent 9ba6af0 commit 5f6d62b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion py-polars/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion py-polars/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "py-polars"
version = "0.13.7"
version = "0.13.8"
authors = ["ritchie46 <ritchie46@gmail.com>"]
documentation = "https://pola-rs.github.io/polars/py-polars/html/reference/index.html"
edition = "2021"
Expand Down
3 changes: 3 additions & 0 deletions py-polars/polars/internals/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -1456,6 +1456,9 @@ def __getitem__(
def __setitem__(
self, key: Union[str, List, Tuple[Any, Union[str, int]]], value: Any
) -> None:
warnings.warn(
"setting a DataFrame by indexing is deprecated; Consider using DataFrame.with_column"
)
# df["foo"] = series
if isinstance(key, str):
try:
Expand Down

0 comments on commit 5f6d62b

Please sign in to comment.