OCA / connector-odoo2odoo

connector-odoo2odoo. Intercompany process, based on odoo-connector
GNU Affero General Public License v3.0
24 stars 64 forks source link

16.0 mig connector odoo #15

Open wpichler opened 2 years ago

wpichler commented 2 years ago

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

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

tate11 commented 2 years ago

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'

wpichler commented 2 years ago

downgrade collections to version 3.8 or 3.9 should fix this

netfxtech commented 1 year ago

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):

flotho commented 1 year ago

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

wpichler commented 1 year ago

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