Open
Description
This was likely only ever used by Pants which has moved away from it with pantsbuild/pants#11773.
The equivalent functionality can be had with --pex-repository for the single requirements pex case with a bit of juggling:
pex --pex-repository requirements.pex $(
pex-tools requests.pex repository info -v | jq -r '.project_name + "==" + .version'
) ...