Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Filter all DeprecationWarning's by ArrowTable.to_pandas() #14989

Merged
merged 12 commits into from
Feb 7, 2024
3 changes: 2 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@ repos:
# DeprecationWarning: https://github.com/pandas-dev/pandas/issues/54970
exclude: |
(?x)^(
^python/cudf/cudf/core/dtypes.py
^python/cudf/cudf/core/dtypes.py|
^python/cudf/cudf/tests/pytest.ini
)
- id: no-programmatic-xfail
name: no-programmatic-xfail
Expand Down
2 changes: 2 additions & 0 deletions python/cudf/cudf/tests/pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ filterwarnings =
error
ignore:::.*xdist.*
ignore:::.*pytest.*
ignore:Passing a BlockManager to DataFrame is deprecated:DeprecationWarning
galipremsagar marked this conversation as resolved.
Show resolved Hide resolved
# Above deprecation warning comes from Pyarrow Table.to_pandas() with pandas-2.2+
Loading