This release exposes three Pip options as Pex options to allow building
PEXes for more of the Python distribution ecosystem:
1. `--prefer-binary`: To prefer older wheels to newer sdists in a
resolve which can help avoid problematic builds.
2. `--[no]-use-pep517`: To control how sdists are built: always using
PEP-517, always using setup.py or the default, always using
whichever is appropriate.
3. `--no-build-isolation`: To allow distributions installed in the
environment to be seen during builds of sdists. This allows working
around distributions with undeclared build dependencies by
pre-installing them in the environment before running Pex.
* Expose more Pip options. (1561)