Skip to content

Commit

Permalink
Specify ts resolution explicitly in test_processing_chain (#7744)
Browse files Browse the repository at this point in the history
  • Loading branch information
phofl authored Apr 5, 2023
1 parent 1511b77 commit b8dfda1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions distributed/shuffle/tests/test_shuffle.py
Original file line number Diff line number Diff line change
Expand Up @@ -655,10 +655,11 @@ def __init__(self, value: int) -> None:
f"col{next(counter)}": pd.array(range(100), dtype="float64"),
f"col{next(counter)}": pd.array(
[np.datetime64("2022-01-01") + i for i in range(100)],
dtype="datetime64",
dtype="datetime64[ns]",
),
f"col{next(counter)}": pd.array(
[np.timedelta64(1, "D") + i for i in range(100)], dtype="timedelta64"
[np.timedelta64(1, "D") + i for i in range(100)],
dtype="timedelta64[ns]",
),
# FIXME: PyArrow does not support complex numbers: https://issues.apache.org/jira/browse/ARROW-638
# f"col{next(counter)}": pd.array(range(100), dtype="csingle"),
Expand Down

0 comments on commit b8dfda1

Please sign in to comment.