Closed jpugliesi closed 5 years ago
I think that would be ok, I had it hard pinned since gcsfs changed the API so often. Can you make a PR? If the tests pass i am ok having it like that.
Hi, i am using Dask to read CSV from S3 and looks like it requires s3fs >= 0.3.0
RuntimeError: 's3fs=0.1.5' is installed, but version '0.3.0' or higher is required. Any changes of bumping s3fs to >= 0.3.0 or I can do myself?
I've created configuration to use the
S3ContentsManager
, but am receiving an error that seems to be related to an incompatibility betweendask
and an oldgcsfs
version.Here's the
s3contents
configuration:And here's the error upon running
jupyter notebook
:I found a similar issue here: https://github.com/nteract/papermill/issues/342 - which was resolved by pinning the
gcsfs
module togcsfs>=0.2.1
.Note that
s3contents
is pinned togcsfs==1.2.0
: https://github.com/danielfrg/s3contents/blob/master/requirements.txt#L6I can confirm that the configuration successfully loads once I pinned to a more recent gcsfs version:
Thoughts on pinning
gcsfs>=0.2.1
version fors3contents
?