Skip to content

Commit

Permalink
move import out
Browse files Browse the repository at this point in the history
Signed-off-by: Praateek Mahajan <[email protected]>
  • Loading branch information
praateekmahajan committed Sep 24, 2024
1 parent 02c634c commit 6a8d9b5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions crossfit/backend/cudf/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import cupy as cp
from cudf.core.column import as_column
from cudf.core.dtypes import ListDtype
from packaging.version import parse as parse_version

if TYPE_CHECKING:
from cudf.core.buffer import Buffer
Expand All @@ -28,8 +29,6 @@

@lru_cache
def _is_cudf_gte_24_10():
from packaging.version import parse as parse_version

current_cudf_version = parse_version(cudf.__version__)
cudf_24_10_version = parse_version("24.10.0")

Expand Down

0 comments on commit 6a8d9b5

Please sign in to comment.