Skip to content
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

ImportError: cannot import name 'infer_storage_options' #4

Closed
thenickg opened this issue Sep 9, 2019 · 1 comment
Closed

ImportError: cannot import name 'infer_storage_options' #4

thenickg opened this issue Sep 9, 2019 · 1 comment

Comments

@thenickg
Copy link

thenickg commented Sep 9, 2019

Similar to: intake/intake#388

from dask.bytes.utils import infer_storage_options

Should probably be:

try:
    from dask.bytes.utils import infer_storage_options
except ImportError:
    from dask.bytes.core import infer_storage_options

Possibly consider:

from fsspec.utils import infer_storage_options

as per: dask/dask#5064
Not sure what else changed in dask that would break this plugin

@martindurant
Copy link
Member

Please wait while this repo is rewritten.
Indeed, fsspec is the way to do it, but the upstream code in azure-datalake-file-system is not compatible.

TomAugspurger pushed a commit that referenced this issue Nov 15, 2019
@hayesgb hayesgb closed this as completed Nov 25, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants