Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix incorrect regex for PEX_PYTHON precision warning (#2622)
Looks like this + is misplaced, as it means `PEX_PYTHON=3.+` would be accepted but it rejects and warns for `PEX_PYTHON=python3.11`. Leads to this funky warning message telling us to use the setting we already have :) ``` PEXWarning: Using a venv selected by PEX_PYTHON=python3.11 for <snip>.pex at ... To avoid this warning, either specify a Python binary with major and minor version in its name, like PEX_PYTHON=python3.11 or ... ```
- Loading branch information