-
Notifications
You must be signed in to change notification settings - Fork 916
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[REVIEW] Unpin dask
& distributed
for development
#11058
Changes from all commits
63427d5
9d84d7b
3f7bf0b
f5690df
286478b
869fcbc
de3532f
e01e137
7db7afd
08d612d
368d138
791e34b
9c778d0
dc9039a
0d108cd
c6c01cc
b1dc672
b87a295
81baf3f
cebb190
2e7c3b4
401748f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
# Copyright (c) 2020-2022, NVIDIA CORPORATION. | ||
|
||
import numba.cuda | ||
import pytest | ||
|
||
import dask | ||
from dask import dataframe as dd | ||
from dask.distributed import Client | ||
from distributed.utils_test import loop # noqa: F401 | ||
from distributed.utils_test import cleanup, loop # noqa: F401 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We had to import due to a CI failure, I think the reason is similar to: https://github.com/rapidsai/dask-cuda/pull/924/files There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just tested removing There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks for checking 🙏 Strange. Maybe we should raise a Distributed issue about this? |
||
|
||
import cudf | ||
from cudf.testing._utils import assert_eq | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need to bump the minimum Dask version because of this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not a pressing issue to bump min requirement, since it is in
try/except
block the current code should just work for old and new version of dask.