diff --git a/py-polars/pyproject.toml b/py-polars/pyproject.toml index 8a440e0bae62..3400645d8c48 100644 --- a/py-polars/pyproject.toml +++ b/py-polars/pyproject.toml @@ -259,6 +259,8 @@ filterwarnings = [ # Ignore invalid warnings when running earlier versions of SQLAlchemy (we # know they are invalid because our standard tests run the latest version) "ignore:Deprecated API features detected.*:DeprecationWarning", + # numpy import can generate this warning in Python 3.13 on certain runners + "ignore:.*numpy\\.longdouble.*:UserWarning" ] xfail_strict = true