Skip to content

Commit

Permalink
python polars 0.12.12
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Jan 15, 2022
1 parent 77b41d0 commit 345bf0f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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.12.11"
version = "0.12.12"
authors = ["ritchie46 <ritchie46@gmail.com>"]
documentation = "https://pola-rs.github.io/polars/py-polars/html/reference/index.html"
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions py-polars/tests/test_queries.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def test_sort_by_bools() -> None:
"ham": ["a", "b", "c"],
}
)
out = df.with_column((pl.col("foo") % 2 == 1).alias("foo_uneven")).sort(
by=["foo", "foo_uneven"]
out = df.with_column((pl.col("foo") % 2 == 1).alias("foo_odd")).sort(
by=["foo", "foo_odd"]
)
assert out.shape == (3, 4)

0 comments on commit 345bf0f

Please sign in to comment.