-
Notifications
You must be signed in to change notification settings - Fork 919
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] Fix importing apply
from dask
#8517
Conversation
apply
from dask.utils
apply
from dask
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.
Thanks @galipremsagar !
@gpucibot merge |
rerun tests |
1 similar comment
rerun tests |
logger "pip install git+https://github.com/dask/distributed.git@main --upgrade --no-deps" | ||
pip install "git+https://github.com/dask/distributed.git@main" --upgrade --no-deps | ||
logger "pip install git+https://github.com/dask/dask.git@main --upgrade --no-deps" | ||
pip install "git+https://github.com/dask/dask.git@main" --upgrade --no-deps | ||
logger "pip install git+https://github.com/dask/distributed.git@2021.06.0 --upgrade --no-deps" | ||
pip install "git+https://github.com/dask/distributed.git@2021.06.0" --upgrade --no-deps | ||
logger "pip install git+https://github.com/dask/dask.git@2021.06.0 --upgrade --no-deps" | ||
pip install "git+https://github.com/dask/dask.git@2021.06.0" --upgrade --no-deps |
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.
Why is this needed?
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.
Running benchmarks would fail with latest dask as streamz
is currently broken: https://github.com/python-streamz/streamz/blob/master/streamz/dask.py#L7
Plan is to revert all the pinning once python-streamz/streamz#423 is merged. - The current pin is to unblock CI
Codecov Report
@@ Coverage Diff @@
## branch-21.08 #8517 +/- ##
===============================================
Coverage ? 82.89%
===============================================
Files ? 110
Lines ? 18097
Branches ? 0
===============================================
Hits ? 15002
Misses ? 3095
Partials ? 0 Continue to review full report at Codecov.
|
As part of dask/dask#7801,
apply
has been removed fromdask.compatibility
, hence made changes indask_cudf
to importapply
fromdask.utils
, this change is back-ward compatible to older versions of dask too.