Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/notes/2.32.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ All version of [Ruff](https://docs.astral.sh/ruff/) from [0.13.1](https://github

The default version of the [Ruff](https://docs.astral.sh/ruff/) tool has been updated to [0.14.14](https://github.com/astral-sh/ruff/releases/tag/0.14.14).

The version of [Pex](https://github.com/pex-tool/pex) used by the Python backend has been upgraded to [`v2.91.4`](https://github.com/pex-tool/pex/releases/tag/v2.91.4). Of particular note for Pants users:
The version of [Pex](https://github.com/pex-tool/pex) used by the Python backend has been upgraded to [`v2.91.6`](https://github.com/pex-tool/pex/releases/tag/v2.91.6). Of particular note for Pants users:
- Support for [pip 26.0.1](https://pip.pypa.io/en/stable/news/#v26-0-1).
- A new `--interpreter-selection-strategy` option to select the `"oldest"` or `"newest"` interpreter when multiple match constraints.
- Linux PEX scies can now install themselves with a desktop entry.
Expand Down
6 changes: 3 additions & 3 deletions src/python/pants/backend/python/util_rules/pex_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@
logger = logging.getLogger(__name__)


_PEX_VERSION = "v2.91.4"
_PEX_BINARY_HASH = "41540a3777f344cfd975c33fc2eae7c18dbef7810de89da0477acfe231e1c150"
_PEX_BINARY_SIZE = 5078680
_PEX_VERSION = "v2.91.6"
_PEX_BINARY_HASH = "7ad93771823900012ecd5386ed00cc4a15393ef76a76c410853708f9f91abecd"
_PEX_BINARY_SIZE = 5079012


class PexCli(TemplatedExternalTool):
Expand Down
Loading