Removal of egg modules

Hi,
I noticed that V7.0.0 has Remove Egg modules Dictionary.

it that mean the custom modules need to put in the trytond/modules.

python -m pip install --editable {custom_module} cannot be used anymore?

Is it correct? or is there any setting to set for custom directory?
if using docker for development, custom directory modules will be easier to copy to local and editable.

Please advice

Maybe you could check this issue: tryton/tryton#12701

You should use this command now:

python -m pip install --use-pep517 --editable {custom_module}

Hi @maxx.. you save my day…