The recent v0.18.0 release no longer works with google-cloud-storage 1.43, due to PR #391:
INFO:__main__:API: File "/usr/local/lib/python3.11/site-packages/cloudpathlib/__init__.py", line 8, in <module>
INFO:__main__:API: from .gs.gspath import GSPath
INFO:__main__:API: File "/usr/local/lib/python3.11/site-packages/cloudpathlib/gs/__init__.py", line 1, in <module>
INFO:__main__:API: from .gsclient import GSClient
INFO:__main__:API: File "/usr/local/lib/python3.11/site-packages/cloudpathlib/gs/gsclient.py", line 19, in <module>
INFO:__main__:API: from google.cloud.storage import transfer_manager
INFO:__main__:API: ImportError: cannot import name 'transfer_manager' from 'google.cloud.storage' (/usr/local/lib/python3.11/site-packages/google/cloud/storage/__init__.py)
This old version of google-cloud-storage does not provide transfer_manager, which was presumably added in 2.x.
Previous cloudpathlib releases did work with this old google-cloud-storage, or at least they worked well enough to import successfully and for basic functionality to work.
Admittedly it's silly of us to still be using this old version and we should probably update our google-cloud-storage requirements, but I didn't notice any required version specified in pyproject.toml (whereas there is a listed minimum for other backends) or elsewhere:
[project.optional-dependencies]
azure = ["azure-storage-blob>=12"]
gs = ["google-cloud-storage"]
s3 = ["boto3>=1.34.0"]
Does cloudpathlib have a recommended or required minimal version for google-cloud-storage?
The recent v0.18.0 release no longer works with google-cloud-storage 1.43, due to PR #391:
This old version of google-cloud-storage does not provide
transfer_manager, which was presumably added in 2.x.Previous cloudpathlib releases did work with this old google-cloud-storage, or at least they worked well enough to import successfully and for basic functionality to work.
Admittedly it's silly of us to still be using this old version and we should probably update our google-cloud-storage requirements, but I didn't notice any required version specified in pyproject.toml (whereas there is a listed minimum for other backends) or elsewhere:
Does cloudpathlib have a recommended or required minimal version for google-cloud-storage?