system_hotkey icon indicating copy to clipboard operation
system_hotkey copied to clipboard

Regression on Python 3.10: collections.iterable has been deprecated

Open hhannine opened this issue 3 years ago • 4 comments

Running on python 3.10 results in the error:

AttributeError: module 'collections' has no attribute 'Iterable'

hhannine avatar Jan 20 '22 21:01 hhannine

This was deprecated and removed in Python 3.10. Since the project supports Python 3 only collections.abc can be used. PR to fix this https://github.com/timeyyy/system_hotkey/pull/26

tirkarthi avatar Jan 21 '22 07:01 tirkarthi

Any chance to get this pull request through? I tested and verified that it works. Thanks @tirkarthi.

hhannine avatar Feb 08 '22 19:02 hhannine

Any update here? Thanks!

DizzyThermal avatar May 14 '22 19:05 DizzyThermal

Any update here? Thanks!

#26 is not compatible for 3.10 below.

I fixed this in #29.

Good luck.

DoooReyn avatar Sep 17 '22 16:09 DoooReyn