You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 24, 2023. It is now read-only.
The alias collections.Callable for collections.abc.Callable has been deprecated. The alias is used in __init__.py, and therefore httplib2shim (and dependants like GEE) do not work on Python 3.10. See python/cpython#23754
Proposed change: Change the single occuring instance of collections.Callable to collections.abc.Callable.
Problem: This might break the library for anyone using Python <3.3, so it is potentially both a patch and a breaking change, making it unclear what the SEMVER should be.
The alias
collections.Callable
forcollections.abc.Callable
has been deprecated. The alias is used in __init__.py, and therefore httplib2shim (and dependants like GEE) do not work on Python 3.10. See python/cpython#23754Proposed change: Change the single occuring instance of
collections.Callable
tocollections.abc.Callable
.Problem: This might break the library for anyone using Python <3.3, so it is potentially both a patch and a breaking change, making it unclear what the SEMVER should be.
See nylanderdev@7344d5d
The text was updated successfully, but these errors were encountered: