import iterable from collection.abc instead of collections to clear deprecation warning in python 3.10
Filled out the Dropbox Contributor License Agreement Fixes #392
This PR seems like it would be really handy as it would allow pyhive to be compatible with python 3.10. Any chance of it getting merged?
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.
You have signed the CLA already but the status is still pending? Let us recheck it.
What's the ETA to merge this pull request?
As a workaround, I just added the code on my python script:
if "3.10" in sys.version:
collections.Iterable = collections.abc.Iterable