-
Notifications
You must be signed in to change notification settings - Fork 95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Failed to configure #70
Comments
I have no in-depth knowledge about the scripting part. @Paebbels can you help with this problem? |
I ran into the same problem today. |
I had the same issue and was able to fix it by changing the line 41 in PoC\lib\pyIPCMI\lib\ExtendedConfigParser_init_.py: from collections import OrderedDict as _default_dict, ChainMap as _ChainMap, MutableMapping To: from collections import OrderedDict as _default_dict, ChainMap as _ChainMap Apparently after Python 3.5 MutableMapping was deprecated in collections and relocated to the collections.abc package. I do not know the full extent of behavior across all the versions to suggest most appropriate fix for the code base. |
I am trying to configure PoC for GHDL under Fedora 35.
When I run the sh script I get:
I am running on Python 3.10.7 and it has
collections
.The text was updated successfully, but these errors were encountered: