When I `export` my `app` lock, I see that `"--find...
# general
h
When I
export
my
app
lock, I see that
"--find-links=<https://wheels.pantsbuild.org/simple>"
is part of the pip invocation. Even though,
pants_requirements
uses an independent
resolve=pants_plugins_lock
. How can I avoid this --find-links argument on an independent resolve?
g
The most likely reason this happens is because something pulls those pants requirements into the app resolve. I'd look at
pants dependencies --transitive ...
and
pants paths ...
and see if anything looks suspicious. As far as I can tell, this does not occur in any of my repositories.
It could be that the code that uses pants does not specify a resolve?
h
Might be that it somehow got mangled. I'll use the dependencies target to figure it out.