Skip to content

Commit

Permalink
feat: Relax cuDF minimum version to 24.10.0 (#1649)
Browse files Browse the repository at this point in the history
relax cudf minimm
  • Loading branch information
MarcoGorelli authored Dec 27, 2024
1 parent 8749e72 commit a4fbcb4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions narwhals/_pandas_like/group_by.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,9 @@ def __iter__(self) -> Iterator[tuple[Any, PandasLikeDataFrame]]:
if (
self._df._implementation is Implementation.PANDAS
and self._df._backend_version < (2, 2)
) or (
self._df._implementation is Implementation.CUDF
and self._df._backend_version < (2024, 12)
): # pragma: no cover
for key in indices:
yield (key, self._from_native_frame(self._grouped.get_group(key)))
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ classifiers = [
]

[project.optional-dependencies]
cudf = ["cudf>=24.12.0"]
cudf = ["cudf>=24.10.0"]
modin = ["modin"]
pandas = ["pandas>=0.25.3"]
polars = ["polars>=0.20.3"]
Expand Down

0 comments on commit a4fbcb4

Please sign in to comment.