From 08cef430527b726726b2b94a53b19d953f19e126 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20P=C3=B6lsterl?= Date: Thu, 1 Feb 2024 20:36:05 +0100 Subject: [PATCH] Ignore warning about pandas 3 requiring pyarrow --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 07a3429d..9b382b30 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -142,6 +142,8 @@ filterwarnings = [ "ignore:datetime\\.datetime\\.utcfromtimestamp\\(\\) is deprecated and scheduled for removal in a future version.*:DeprecationWarning", "ignore:ast\\.Num is deprecated and will be removed in Python 3\\.14.*:DeprecationWarning", "ignore:Attribute n is deprecated and will be removed in Python 3\\.14.*:DeprecationWarning", + # deprecated since Python 2.2.0 + "ignore:Pyarrow will become a required dependency of pandas in the next major release of pandas \\(pandas 3\\.0\\).*:DeprecationWarning", ] [tool.coverage.run]