-
-
Notifications
You must be signed in to change notification settings - Fork 655
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
Pants plugin specs should be any pip-resolvable string #8669
Comments
Any plans to work on this @benjyw? I have a use case for this and would be willing to take a whack at it if you're not available for it. |
Hmm, I think the actual plugin resolution part might just work now, since everything is delegated to pex, which now delegates to pip:
If I'm right about that then the remaining problem is just this line:
And all that does that matters is getting hold of the project name for each requirement, so it can use it as a key to look up the dist in the pkg_resources.WorkingSet instance. But this can be done in a different way for URL/VCS requirements, as documented here: https://pip.pypa.io/en/stable/reference/pip_install/#working-out-the-name-and-version E.g., it can come from the Note that the So if you're down to implement this, that would be great! Probably most of the work would just be in the testing! |
Adding @jsirois , who knows more about this than I do. |
I'm fine with requiring the |
@benjyw Thanks for the background. We've ended up doing a semi-hacky workaround for now but I'll still try to take a quick swing at this later in the week. |
Adjusting how we accomplish plugin loading would be related to #9902. |
This issue really has nothing to do with loading plugins, just resolving them. |
I think that the potential relevance I was anticipating is that if in #9902 we move toward requiring that source plugins are built from real targets, that might be accomplished by building a wheel or otherwise isolated PYTHONPATH entry, and then loading from that (rather than placing un-isolated code directly on pants' PYTHONPATH, which causes the isolation/file-watching challenge from #9902). |
Aha - ok. Yeah, I had actually started down an experimental road supporting implicit output targets ala bazel for this. The idea would be @union
class ImplicitInput:
...
def maybe_parse_implicit_output(spec: str) -> Optional[Tuple[str, Type[ImplicitInput]]:
... And then a bit of code that used this like ~this in a implict_output = maybe_parse_implicit_output(plugin)
if implicit_output:
spec, implicit_input_type = implict_output
plugin_distribution = await Get(ImplicitOutput, ImplicitInput, implicit_input_type(spec)) With plugins defining rules that accept their subclass of |
If I understand correctly, then yea... that would likely work? But I'm not sure that it actually needs to be an abstract interface, because for the near term all plugins will be written and loaded as Python... and I think that that means that we could request a concrete type for the plugin. Given that all plugins are Python, I think that you can use a concrete type rather than an abstract interface ( |
Currently the plugin resolver assumes that a plugin is specified via a requirements string (e.g.,
my.cool.plugin==1.2.3
). We should allow anything pip can consume (a URL, a VCS reference, and so on).The text was updated successfully, but these errors were encountered: