Skip to content

Commit

Permalink
Upgrade Pex to 2.1.42. (pantsbuild#11986)
Browse files Browse the repository at this point in the history
This pulls in a macOS interpreter identification fix and a Pip isolation
fix.

Release notes here:
  https://github.com/pantsbuild/pex/releases/tag/v2.1.42
  • Loading branch information
jsirois authored Apr 30, 2021
1 parent e68e2da commit 83601ee
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions 3rdparty/python/constraints.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by build-support/bin/generate_lockfile.sh on Mon Apr 26 10:34:22 AM MST 2021
# Generated by build-support/bin/generate_lockfile.sh on Thu Apr 29 04:06:48 PM PDT 2021
ansicolors==1.1.8
attrs==20.3.0
bugout==0.1.12
Expand All @@ -14,7 +14,7 @@ iniconfig==1.1.1
mypy==0.812
mypy-extensions==0.4.3
packaging==20.9
pex==2.1.41
pex==2.1.42
pip==20.2.3
pluggy==0.13.1
psutil==5.8.0
Expand Down
2 changes: 1 addition & 1 deletion 3rdparty/python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ mypy==0.812

packaging==20.9
pathspec==0.8.1
pex==2.1.41
pex==2.1.42
psutil==5.8.0
pystache==0.5.4
# This should be kept in sync with `pytest.py`.
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,7 +37,7 @@ class PexBinary(TemplatedExternalTool):
name = "pex"
help = "The PEX (Python EXecutable) tool (https://github.com/pantsbuild/pex)."

default_version = "v2.1.41"
default_version = "v2.1.42"
default_url_template = "https://github.com/pantsbuild/pex/releases/download/{version}/pex"

@classproperty
Expand All @@ -47,8 +47,8 @@ def default_known_versions(cls):
(
cls.default_version,
plat,
"01032641a48934e469e87a77884b67369faebeefa192846f79198a80eda8a04f",
"3613307",
"69d6b1b1009b00dd14a3a9f19b72cff818a713ca44b3186c9b12074b2a31e51f",
"3613838",
)
)
for plat in ["darwin", "linux"]
Expand Down

0 comments on commit 83601ee

Please sign in to comment.