Skip to content

Commit 81d272c

Browse files
skritsotalakisskritsotalakis
andauthored
fix(tests): correct polars version in modern polars ewm_mean_test (#2993)
- fix: correct polars version in modern polars ewm_mean_test Co-authored-by: skritsotalakis <[email protected]>
1 parent 57eec61 commit 81d272c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/modern_polars/ewm_mean_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def test_ew_mean(
1111
) -> None:
1212
if any(x in str(constructor_eager) for x in ("pyarrow_table_", "modin")):
1313
request.applymarker(pytest.mark.xfail)
14-
if "polars" in str(constructor_eager) and POLARS_VERSION < (1, 1):
14+
if "polars" in str(constructor_eager) and POLARS_VERSION < (1, 10):
1515
pytest.skip()
1616

1717
data = {

0 commit comments

Comments
 (0)