Skip to content

Commit

Permalink
Bump version to 0.14.9
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoGorelli committed Mar 22, 2024
1 parent c3d26df commit 2660bd0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "polars_xdt"
version = "0.14.8"
version = "0.14.9"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
4 changes: 1 addition & 3 deletions tests/test_ewma_by_time.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@ def test_ewma_by_time():
}
)
result = df.select(
xdt.ewma_by_time(
"values", times="times", half_life=timedelta(days=4)
),
xdt.ewma_by_time("values", times="times", half_life=timedelta(days=4)),
)
expected = pl.DataFrame(
{
Expand Down
4 changes: 1 addition & 3 deletions tests/test_month_delta.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,7 @@
@example(start_date=date(2019, 12, 31), end_date=date(2020, 1, 1)) # Border
@example(start_date=date(2018, 12, 1), end_date=date(2020, 1, 1)) # End of year
@example(start_date=date(2022, 12, 1), end_date=date(2020, 1, 1)) # Negative
@example(
start_date=date(2000, 3, 29), end_date=date(2003, 1, 28)
)
@example(start_date=date(2000, 3, 29), end_date=date(2003, 1, 28))
@settings(max_examples=500)
def test_month_delta_hypothesis(start_date: date, end_date: date) -> None:
df = pl.DataFrame(
Expand Down

0 comments on commit 2660bd0

Please sign in to comment.