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

[BUG] cudf.pandas objects are always Callable when wrapped objects are not #18253

Open
mroeschke opened this issue Mar 12, 2025 · 1 comment
Open
Assignees
Labels
bug Something isn't working

Comments

@mroeschke
Copy link
Contributor

mroeschke commented Mar 12, 2025

Describe the bug

In [1]: %load_ext cudf.pandas

In [2]: import pandas as pd

In [3]: ser = pd.Series([1])

In [4]: from collections.abc import Callable

In [5]: isinstance(ser, Callable)
Out[5]: True
In [1]: import pandas as pd

In [2]: ser = pd.Series([1])

In [4]: from collections.abc import Callable

In [5]: isinstance(ser, Callable)
Out[5]: False

Expected behavior
This is a cause of the tests/tpch_q1_test.py::test_q1[dask] and tests/expr_and_series/order_dependent_lazy_test.py::test_dask_order_dependent_ops Narwhals tests failing.

xref #18248

@mroeschke mroeschke added the bug Something isn't working label Mar 12, 2025
@galipremsagar
Copy link
Contributor

I can take a look at it.

@galipremsagar galipremsagar self-assigned this Mar 12, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants