From 8547d862c40059d11768b48c0d8917f33c88234e Mon Sep 17 00:00:00 2001 From: Ritchie Vink Date: Sat, 13 Apr 2024 18:01:32 +0200 Subject: [PATCH] python polars 0.20.20 (#15635) --- Cargo.lock | 2 +- py-polars/Cargo.toml | 2 +- py-polars/tests/unit/datatypes/test_temporal.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f69a5d639222..dfbdc940723e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3191,7 +3191,7 @@ dependencies = [ [[package]] name = "py-polars" -version = "0.20.19" +version = "0.20.20" dependencies = [ "ahash", "arboard", diff --git a/py-polars/Cargo.toml b/py-polars/Cargo.toml index 42406974d7fa..b10889e0f108 100644 --- a/py-polars/Cargo.toml +++ b/py-polars/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "py-polars" -version = "0.20.19" +version = "0.20.20" edition = "2021" [lib] diff --git a/py-polars/tests/unit/datatypes/test_temporal.py b/py-polars/tests/unit/datatypes/test_temporal.py index d056fdf55f2a..04aafb858faa 100644 --- a/py-polars/tests/unit/datatypes/test_temporal.py +++ b/py-polars/tests/unit/datatypes/test_temporal.py @@ -823,7 +823,7 @@ def test_upsample_index( } ).with_columns(pl.col("index").cast(dtype)) result = ( - df.upsample(time_column="index", by="groups", every=every, offset=offset) + df.upsample(time_column="index", group_by="groups", every=every, offset=offset) .fill_null(strategy=fill) .sort(["groups", "index"]) )