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

unit-prerelease fails with pyarrow 20.0.0.dev19 or newer versions #321

Closed
chelsea-lin opened this issue Jan 29, 2025 · 2 comments · Fixed by #327
Closed

unit-prerelease fails with pyarrow 20.0.0.dev19 or newer versions #321

chelsea-lin opened this issue Jan 29, 2025 · 2 comments · Fixed by #327
Assignees
Labels
api: bigquery Issues related to the googleapis/python-db-dtypes-pandas API. type: process A process-related concern. May include testing, release, or the like.

Comments

@chelsea-lin
Copy link
Contributor

The unit-prerelease job is failing with pyarrow version 20.0.0.dev19. The tests pass with earlier versions, specifically up to 20.0.0.dev18. The failure appears to be related to pyarrow misses RankQuantileOptions python class, causing a RuntimeWarning warning.

Here's the error output:

.nox/unit_prerelease/lib/python3.12/site-packages/pyarrow/compute.py:209: in _get_options_class
    return globals()[class_name]
E   KeyError: 'RankQuantileOptions'

During handling of the above exception, another exception occurred:
tests/unit/test_arrow.py:18: in <module>
    import pandas
.nox/unit_prerelease/lib/python3.12/site-packages/pandas/__init__.py:49: in <module>
    from pandas.core.api import (
.nox/unit_prerelease/lib/python3.12/site-packages/pandas/core/api.py:28: in <module>
    from pandas.core.arrays import Categorical
.nox/unit_prerelease/lib/python3.12/site-packages/pandas/core/arrays/__init__.py:1: in <module>
    from pandas.core.arrays.arrow import ArrowExtensionArray
.nox/unit_prerelease/lib/python3.12/site-packages/pandas/core/arrays/arrow/__init__.py:1: in <module>
    from pandas.core.arrays.arrow.accessors import (
.nox/unit_prerelease/lib/python3.12/site-packages/pandas/core/arrays/arrow/accessors.py:23: in <module>
    import pyarrow.compute as pc
.nox/unit_prerelease/lib/python3.12/site-packages/pyarrow/compute.py:336: in <module>
    _make_global_functions()
.nox/unit_prerelease/lib/python3.12/site-packages/pyarrow/compute.py:333: in _make_global_functions
    g[cpp_name] = g[name] = _wrap_function(name, func)
.nox/unit_prerelease/lib/python3.12/site-packages/pyarrow/compute.py:292: in _wrap_function
    options_class = _get_options_class(func)
.nox/unit_prerelease/lib/python3.12/site-packages/pyarrow/compute.py:211: in _get_options_class
    warnings.warn("Python binding for {} not exposed"
E   RuntimeWarning: Python binding for RankQuantileOptions not exposed

Steps to reproduce

The issue can be reproduce when importing pandas with pyarrow 20.0.0.dev19

>>> import pandas
/usr/local/google/home/chelsealin/src/python-db-dtypes-pandas/.nox/unit_prerelease/lib/python3.12/site-packages/pyarrow/compute.py:211: RuntimeWarning: Python binding for RankQuantileOptions not exposed
  warnings.warn("Python binding for {} not exposed"
@product-auto-label product-auto-label bot added the api: bigquery Issues related to the googleapis/python-db-dtypes-pandas API. label Jan 29, 2025
@chelsea-lin
Copy link
Contributor Author

It's a known issue for pyarrow now so we can walkaround this issue by #320

@Linchin
Copy link
Contributor

Linchin commented Jan 29, 2025

Thank you for opening the tracking issue! Related pyarrow issue: apache/arrow#45380

@Linchin Linchin added type: cleanup An internal cleanup or hygiene concern. type: process A process-related concern. May include testing, release, or the like. and removed type: cleanup An internal cleanup or hygiene concern. labels Jan 29, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
api: bigquery Issues related to the googleapis/python-db-dtypes-pandas API. type: process A process-related concern. May include testing, release, or the like.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants