PyHive icon indicating copy to clipboard operation
PyHive copied to clipboard

import iterable from collection.abc instead of collections to clear deprecation warning in python 3.10

Open Narendra-Neerukonda opened this issue 4 years ago • 4 comments

Filled out the Dropbox Contributor License Agreement Fixes #392

Narendra-Neerukonda avatar Jun 18 '21 18:06 Narendra-Neerukonda

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?

admackin avatar Feb 24 '22 05:02 admackin

CLA assistant check
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.

CLAassistant avatar Apr 16 '22 21:04 CLAassistant

What's the ETA to merge this pull request?

fabiofalavinha avatar Oct 27 '22 18:10 fabiofalavinha

As a workaround, I just added the code on my python script:

if "3.10" in sys.version:
    collections.Iterable = collections.abc.Iterable

fabiofalavinha avatar Oct 27 '22 18:10 fabiofalavinha