We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
this seems to plague rtd build and upstream tests un der python 3.9
Related to #292 and #293
The text was updated successfully, but these errors were encountered:
Just notice fsspec/filesystem_spec#1353 !! changed occurred in release 2023.9.1 file cache is no longer a pickle but a json file !
Sorry, something went wrong.
Also, cached files data are now managed by a specific class in fsspec/filesystem_spec#1296 (fsspec/filesystem_spec@aacc5f2)
that's why we have the AttributeError: type object 'MemoryFileSystem' has no attribute 'cached_files' error
AttributeError: type object 'MemoryFileSystem' has no attribute 'cached_files'
the list of cached_files is now in the fs._metadata.cached_files ! not fs.cached_files anymore
fs._metadata.cached_files
fs.cached_files
this is for fsspec version > 2023.6.0
Try to fix #294
559addf
Successfully merging a pull request may close this issue.
this seems to plague rtd build and upstream tests un der python 3.9
Related to #292 and #293
The text was updated successfully, but these errors were encountered: