connector-odoo2odoo icon indicating copy to clipboard operation
connector-odoo2odoo copied to clipboard

16.0 mig connector odoo

Open wpichler opened this issue 2 years ago • 5 comments

https://github.com/OCA/connector-odoo2odoo/issues/14

Depends on https://github.com/OCA/connector/pull/444

wpichler avatar Oct 25 '22 08:10 wpichler

Error while installing module: File "C:\odoo\v16\venv\lib\site-packages\oerplib\tools_init_.py", line 31, in class Config(collections.MutableMapping): AttributeError: module 'collections' has no attribute 'MutableMapping'

tate11 avatar Nov 09 '22 18:11 tate11

downgrade collections to version 3.8 or 3.9 should fix this

wpichler avatar Nov 10 '22 07:11 wpichler

Error while installing module: File "C:\odoo\v16\venv\lib\site-packages\oerplib\tools__init__.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):

netfxtech avatar Jan 04 '23 03:01 netfxtech

Hi @wpichler happy to see you reuse this work. Ask any quaestion if some design are not clear.

flotho avatar Jan 06 '23 20:01 flotho

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

wpichler avatar Jan 07 '23 17:01 wpichler