Skip to content

Commit

Permalink
Upgrade to pex 2.1.9. (#9489)
Browse files Browse the repository at this point in the history
[ci skip-jvm-tests]  # No JVM changes made.
  • Loading branch information
benjyw committed Apr 8, 2020
1 parent a196b18 commit 1b180b0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion 3rdparty/python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Markdown==2.1.1
packaging==16.8
parameterized==0.6.1
pathspec==0.5.9
pex==2.1.7
pex==2.1.9
psutil==5.6.3
Pygments==2.3.1
pyopenssl==17.3.0
Expand Down
6 changes: 3 additions & 3 deletions src/python/pants/backend/python/rules/download_pex_bin.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,16 @@ def directory_digest(self) -> Digest:
class Factory(Script):
options_scope = "download-pex-bin"
name = "pex"
default_version = "v2.1.7"
default_version = "v2.1.9"

# Note: You can compute the digest and size using:
# curl -L https://github.com/pantsbuild/pex/releases/download/vX.Y.Z/pex | tee >(wc -c) >(shasum -a 256) >/dev/null
default_versions_and_digests = {
PlatformConstraint.none: ToolForPlatform(
digest=Digest(
"375ab4a405a6db57f3afd8d60eca666e61931b44f156dc78ac7d8e47bddc96d6", 2620451
"4e2677ce7270dd04d767e93e1904c90aa8c7f4f53b76f3615215970b45d100d7", 2624111
),
version=ToolVersion("v2.1.7"),
version=ToolVersion("v2.1.9"),
),
}

Expand Down

0 comments on commit 1b180b0

Please sign in to comment.