From e012b020ca6e071a49a8868736015a1ed428befa Mon Sep 17 00:00:00 2001 From: Marco Gorelli <33491632+MarcoGorelli@users.noreply.github.com> Date: Tue, 7 Jan 2025 11:49:34 +0000 Subject: [PATCH] chore: ignore reverted warning --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 4d904d5b2e..135ceb837a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -162,6 +162,8 @@ filterwarnings = [ 'ignore:.*You are using pyarrow version', # This warning was temporarily raised by pandas but then reverted. 'ignore:.*Passing a BlockManager to DataFrame:DeprecationWarning', + # This warning was temporarily raised by Polars but then reverted. + 'The default coalesce behavior of left join will change:DeprecationWarning', ] xfail_strict = true markers = ["slow: marks tests as slow (deselect with '-m \"not slow\"')"]