From 298f212964f3485e5884b9d459deea35f3ab51ca Mon Sep 17 00:00:00 2001 From: Remco de Boer <29308176+redeboer@users.noreply.github.com> Date: Sat, 9 Sep 2023 23:16:11 +0200 Subject: [PATCH] MAINT: ignore `pandas` `FutureWarning` --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 98339c8..fa5e715 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -107,6 +107,7 @@ addopts = ''' filterwarnings = [ "error", "ignore:.*Consider switching from .* to .*:DeprecationWarning", + "ignore:DataFrame.groupby with axis=1 is deprecated.*:FutureWarning", "ignore:Using the level keyword in DataFrame and Series aggregations is deprecated.*:FutureWarning", "ignore:the imp module is deprecated in favour of importlib.*:DeprecationWarning", ]