I wonder where it is defined, which dependencies Plone is pulling and how to exclude parts of it?
In my case I want to disable plone.app.theming, but I can’t find any line in the eggs that defines the dependency.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can depend on ‘Products.CMFPlone’ instead of ‘Plone’ in your policy package (or just install the former instead of the latter in the eggs list in buildout.cfg). That will contain a minimal set. You may then need to pull in additional packages as required.
Leaving p.a.theming in the build shouldn’t cause any problems if you don’t install or enable it, though. If it does, that’s a bug.