Skip to content

Commit

Permalink
Import tlz for optional cytoolz support
Browse files Browse the repository at this point in the history
  • Loading branch information
jakirkham committed Mar 16, 2020
1 parent 9c429e9 commit 20a03f9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@
- PR #4461 Port nvstrings Miscellaneous functions to cuDF Python/Cython
- PR #4503 Port binaryop.pyx to libcudf++ API
- PR #4499 Adding changes to handle include `keep_index` and `RangeIndex`
- PR #4533 Import `tlz` for optional `cytoolz` support
- PR #4493 Skip legacy testing in CI

## Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion python/dask_cudf/dask_cudf/accessor.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"""

from toolz import partial
from tlz import partial

import cudf
from cudf.core.column.categorical import (
Expand Down
2 changes: 1 addition & 1 deletion python/dask_cudf/dask_cudf/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import numpy as np
import pandas as pd
from toolz import partition_all
from tlz import partition_all

import dask
import dask.dataframe as dd
Expand Down

0 comments on commit 20a03f9

Please sign in to comment.