Skip to content

Commit

Permalink
Merge pull request #4533 from jakirkham/import_tlz
Browse files Browse the repository at this point in the history
Import `tlz` for optional `cytoolz` support
  • Loading branch information
Keith Kraus authored Mar 17, 2020
2 parents 54f1187 + 20a03f9 commit 5be12d1
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 @@ -169,6 +169,7 @@
- PR #4495 Port nvtext 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
- PR #4524 Updating `__setitem__` for DataFrame to use scalar scatter

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 5be12d1

Please sign in to comment.