Open wpichler opened 2 years ago
Error while installing module: File "C:\odoo\v16\venv\lib\site-packages\oerplib\tools__init__.py", line 31, in
downgrade collections to version 3.8 or 3.9 should fix this
Error while installing module: File "C:\odoo\v16\venv\lib\site-packages\oerplib\toolsinit.py", line 31, in class Config(collections.MutableMapping): AttributeError: module 'collections' has no attribute 'MutableMapping'
If you receive this error it’s because you’re using python 3.10+
you need to import collections.abc and change the class to class Config(collections.abc.MutableMapping):
Hi @wpichler happy to see you reuse this work. Ask any quaestion if some design are not clear.
Hi @flotho,
seems like we have nearly the same problems to solve ;-)
I will see the solve the pre-commit issue and the tests to get it ready for merge
https://github.com/OCA/connector-odoo2odoo/issues/14
Depends on https://github.com/OCA/connector/pull/444