-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
[revamp] Recipes can only depend on other recipes #449
Comments
I should be possible to depend on anything in pypi (which will then be automatically downloaded and installed if it's a pure python module), if that doesn't work then it's a bug. Does adding the pypi module name in the depends not work? |
The Python module is correctly detected in
|
Okay, I guess recipes haven't ever depended on pypi modules before, so On 12/09/15 12:24, str4d wrote:
|
A method to resolve this was introduced by #559 |
Reading the code, this appears to be intentional, but is there scope for allowing recipes to depend on modules? I am trying to write a Twisted recipe, and it depends on
zope.interface
, which is a trivial Python module that requires no special treatment. But currently I have to make a trivial recipe for it; I am wondering if that should be necessary. One reason for requiring a recipe is that then e.g. tests can be stripped out, but maybe that could be reliably automated for Python modules?The text was updated successfully, but these errors were encountered: