-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Suggest installing dask when not discovered by ChunkManager #7963
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
Changes from all commits
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 | ||||
---|---|---|---|---|---|---|
|
@@ -132,8 +132,9 @@ def get_chunked_array_type(*args) -> ChunkManagerEntrypoint: | |||||
if chunkmanager.is_chunked_array(chunked_arr) | ||||||
] | ||||||
if not selected: | ||||||
possible_missing_package_name = type(chunked_arr).__module__.split(".")[0] | ||||||
raise TypeError( | ||||||
f"Could not find a Chunk Manager which recognises type {type(chunked_arr)}" | ||||||
f"Could not find a Chunk Manager which recognises type {type(chunked_arr)}. Try installing the {possible_missing_package_name} package." | ||||||
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.
Suggested change
? Since you could have 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. Fair point, but then would that be more confusing if the problem is that the user doesn't have Dask installed? Because then it would point them towards a non-existent |
||||||
) | ||||||
elif len(selected) >= 2: | ||||||
raise TypeError(f"Multiple ChunkManagers recognise type {type(chunked_arr)}") | ||||||
|
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.
considering that the error is actually caused by a missing package, could we consider
ModuleNotFoundError
, instead of the currentTypeError
?