-
Notifications
You must be signed in to change notification settings - Fork 191
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the bug
I believe this was supposed to be fixed in #107 per #106 but the issue still exists. When you attempt to run various commands, such as pmapper graph create it will raise an ImportError: cannot import name 'Mapping' from 'collections'.
I'm running Python 3.10.6 on MacOS Ventura 13.1. Changing principalmapper/util/case_insensitive_dict.py from
from collections import Mapping, MutableMapping, OrderedDictto
from collections.abc import Mapping, MutableMapping
from collections import OrderedDictFixes it for me
To Reproduce
pip install principalmapper and then run pmapper graph create using python 3.10
Expected behavior
I expect it does not raise an ImportError.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working