Is there a way to update the lockfile without upgr...
# general
f
Is there a way to update the lockfile without upgrading all packages, only updating what’s necessary (similar to
poetry lock --no-update
)? I know it’s not currently supported by pants itself. But maybe there is a workaround, calling pex directly or so?
b
Heya, yeah, pants doesn't yet support this, but pex supports the
update
and
sync
subcommands on
pex lock ...
so your idea of a work around is a good thing to investigate. (Relevant pants issue: https://github.com/pantsbuild/pants/issues/15704 )
f
Ah thanks for pointing me to that issue. Turns out I had seen about it a month ago and commented on it 🙈