codingo / Interlace

Easily turn single threaded command line applications into a fast, multi-threaded application with CIDR and glob support.
GNU General Public License v3.0
1.19k stars 178 forks source link

Python3.10 Temp Fix. #167

Closed gprime31 closed 2 years ago

gprime31 commented 2 years ago

in /usr/lib/python3.10/collections/

init.py ---> add import _collections_abc and from collections.abc import Mapping

abc.py ---> add from _collections_abc import Mapping

NEW: init.py ---> add from collections.abc import MutableMapping

then---> python3 setup.py install

prodigysml commented 2 years ago

I believe this should be fixed now