diff --git a/pyproject.toml b/pyproject.toml index f524292f..f697b327 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,6 +22,9 @@ filterwarnings = [ "ignore:\\w+ is deprecated. Use files\\(\\) instead:DeprecationWarning", # comes from fairlearn "ignore:DataFrame.applymap has been deprecated. Use DataFrame.map instead:FutureWarning", + "ignore:DataFrameGroupBy.apply operated on the grouping columns.:DeprecationWarning", + # Ignore Pandas 2.2 warning on PyArrow. It might be reverted in a later release. + "ignore:\\s*Pyarrow will become a required dependency of pandas.*:DeprecationWarning", ] markers = [ "network: marks tests as requiring internet (deselect with '-m \"not network\"')",