Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add option to not install package dependencies #1

Open
k4ml opened this issue May 15, 2013 · 2 comments
Open

Add option to not install package dependencies #1

k4ml opened this issue May 15, 2013 · 2 comments

Comments

@k4ml
Copy link
Owner

k4ml commented May 15, 2013

Consider the following buildout:-

[buildout]
parts = private main

[private]
recipe = mk.recipe.pip
requirements =
    svn+https://example.com/project/trunk

[main]
recipe = zc.recipe.egg
eggs = Django==1.4.2

If somehow project has dependency on Django>=1.4, pip will install Django-1.5 and then zc.recipe.egg will install Django-1.4.2 which waste lot of time.

@k4ml
Copy link
Owner Author

k4ml commented Jul 19, 2013

This seem to be un-fixable at this moment due to this issue - pypa/pip#1037.

@k4ml
Copy link
Owner Author

k4ml commented Jul 19, 2013

Another problem related to this is that the dependencies will be installed in site-packages and if the dependencies is not listed in the zc.recipe.egg (since only this package require it), buildout will just add the path to site-packages instead of copying the eggs to eggs directory. This will leave as surprise if for some reason we expect all eggs to be in eggs directory. The only workaround to also listed all the dependencies in zc.recipe.egg eggs option.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant