Fokko commented on issue #7566: URL: https://github.com/apache/iceberg/issues/7566#issuecomment-1542494317
@marty-sullivan Thanks for posting the `pip freeze` and the conda yml. I recall someone else having the same issue, and that was caused by an incompatible version of boto3. S3FS relies on [`aiobotocore`](https://s3fs.readthedocs.io/en/latest/#async) (which I'm surprised to not see in the list here. `aiobotocore` has a very strict dependency on the boto3 version, and will weird errors if that doesn't match. Could you share the versions similar as below: ```python Python 3.9.16 (main, Dec 7 2022, 10:06:04) [Clang 14.0.0 (clang-1400.0.29.202)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> boto3 Traceback (most recent call last): File "<stdin>", line 1, in <module> NameError: name 'boto3' is not defined >>> import boto3 >>> boto3.__version__ '1.24.59' >>> import aiobotocore >>> aiobotocore.__version__ '2.4.2' >>> import s3fs >>> s3fs.__version__ '2023.1.0' ``` This way I can check if the version aligns. Thank you! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
