-
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
Conversation
This PR now requires an upstream |
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.
Could we add something to the PR title / body referencing the addition of the arrow schema dispatch? Just to make it easier to track this change in the future
Done 👍 Updated the body. |
rerun tests |
Should ensure `CONDA_BUILD_SYSROOT` is set.
rerun tests |
1 similar comment
rerun tests |
from dask.dataframe.dispatch import grouper_dispatch | ||
from dask.dataframe.dispatch import pyarrow_schema_dispatch |
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.
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 comment
The reason will be displayed to describe this comment to others. Learn more.
Is cleanup
used below somewhere?
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.
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 comment
The reason will be displayed to describe this comment to others. Learn more.
Just tested removing cleanup
locally and got errors around Cluster failing to start
, so will probably need it to be imported explicitly.
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 for checking 🙏 Strange. Maybe we should raise a Distributed issue about this?
Changes to be in line with: rapidsai/cudf#11058 Authors: - GALI PREM SAGAR (https://github.com/galipremsagar) Approvers: - AJ Schmidt (https://github.com/ajschmidt8) URL: #2342
Thanks Prem! 😄 |
Changes to be in line with: rapidsai/cudf#11058 Authors: - GALI PREM SAGAR (https://github.com/galipremsagar) Approvers: - AJ Schmidt (https://github.com/ajschmidt8) URL: #704
Changes to be in line with: rapidsai/cudf#11058 Authors: - GALI PREM SAGAR (https://github.com/galipremsagar) Approvers: - AJ Schmidt (https://github.com/ajschmidt8) - Peter Andreas Entschev (https://github.com/pentschev) URL: #927
Changes to be in line with: rapidsai/cudf#11058 Authors: - GALI PREM SAGAR (https://github.com/galipremsagar) Approvers: - AJ Schmidt (https://github.com/ajschmidt8) - Dante Gama Dessavre (https://github.com/dantegd) URL: #4771
Changes to be in line with: rapidsai/cudf#11058 Authors: - GALI PREM SAGAR (https://github.com/galipremsagar) Approvers: - AJ Schmidt (https://github.com/ajschmidt8) - Dante Gama Dessavre (https://github.com/dantegd) URL: rapidsai#4771
This PR relaxes
dask
&distributed
pinnings for22.08
development.Requires: dask/dask#9169
This PR also includes
pyarrow_schema_dispatch
implementation fordask-cudf