I get an error calling bin/develop:
$ bin/develop co plone.batching
Traceback (most recent call last):
File "/Users/maurits/community/plone-coredev/6.3/bin/develop", line 11, in <module>
import mr.developer.develop
File "/Users/maurits/shared-eggs/v5/cp314/mr.developer-2.0.4-py3.14-macosx-26.2-arm64.egg/mr/developer/develop.py", line 1, in <module>
from mr.developer.common import logger, Config, get_commands
File "/Users/maurits/shared-eggs/v5/cp314/mr.developer-2.0.4-py3.14-macosx-26.2-arm64.egg/mr/developer/common.py", line 3, in <module>
import pkg_resources
ModuleNotFoundError: No module named 'pkg_resources'
This is on the Plone core development buildout using this PR which has the latest zc.buildout alpha and latest setuptools:
$ cat requirements.txt
pip==26.2.1
setuptools==84.0.0
wheel==0.47.0
zc.buildout==6.0.0a1
We have several uses of pkg_resources still, and they should all be removed:
https://github.com/search?q=repo%3Afschulze%2Fmr.developer+pkg_resources&type=code
I will provisionally assign this issue to myself, but if someone else wants to take it on, go ahead.
I get an error calling
bin/develop:This is on the Plone core development buildout using this PR which has the latest
zc.buildoutalpha and latestsetuptools:We have several uses of
pkg_resourcesstill, and they should all be removed:https://github.com/search?q=repo%3Afschulze%2Fmr.developer+pkg_resources&type=code
I will provisionally assign this issue to myself, but if someone else wants to take it on, go ahead.