Skip to content

Commit

Permalink
Upgrade to Pex 2.1.41. (pantsbuild#11971)
Browse files Browse the repository at this point in the history
This pulls in a fix for interpreter identification on macOS 11.
  • Loading branch information
jsirois authored Apr 26, 2021
1 parent e99e8d6 commit 922e897
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 Thu Apr 22 03:03:24 PM MDT 2021
# Generated by build-support/bin/generate_lockfile.sh on Mon Apr 26 10:34:22 AM MST 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.40
pex==2.1.41
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.40
pex==2.1.41
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.40"
default_version = "v2.1.41"
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,
"a7032b391c6358dc2f7fe925eba0122f5650873e4a4fe0ef688be6aa59d2d52e",
"3613311",
"01032641a48934e469e87a77884b67369faebeefa192846f79198a80eda8a04f",
"3613307",
)
)
for plat in ["darwin", "linux"]
Expand Down

0 comments on commit 922e897

Please sign in to comment.