Skip to content
/ cudf Public
forked from rapidsai/cudf

Commit

Permalink
Reintroduce PANDAS_GE_220 import
Browse files Browse the repository at this point in the history
This was required by rapidsai#15109, but removed by the changes in rapidsai#15145 and
the merge order was such that they weren't tested against each other.
  • Loading branch information
wence- committed Mar 13, 2024
1 parent 64d651d commit 85b07f6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion python/cudf/cudf/tests/test_groupby.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@
import cudf
from cudf import DataFrame, Series
from cudf.api.extensions import no_default
from cudf.core._compat import PANDAS_CURRENT_SUPPORTED_VERSION, PANDAS_VERSION
from cudf.core._compat import (
PANDAS_CURRENT_SUPPORTED_VERSION,
PANDAS_GE_220,
PANDAS_VERSION,
)
from cudf.core.udf._ops import arith_ops, comparison_ops, unary_ops
from cudf.core.udf.groupby_typing import SUPPORTED_GROUPBY_NUMPY_TYPES
from cudf.core.udf.utils import UDFError, precompiled
Expand Down

0 comments on commit 85b07f6

Please sign in to comment.