Skip to content

Commit

Permalink
Upgrade setuptools from 49.1.0 to 49.2.0 (#10347)
Browse files Browse the repository at this point in the history
  • Loading branch information
asherf committed Jul 15, 2020
1 parent 742044b commit 00bbf38
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 3rdparty/python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ python-Levenshtein==0.12.0
PyYAML>=5.3.1,<5.4
requests[security]>=2.20.1
setproctitle==1.1.10
setuptools==49.1.0
setuptools==49.2.0
toml==0.10.1
typed-ast>=1.4.1,<1.5
typing-extensions==3.7.4.2
Expand Down
2 changes: 1 addition & 1 deletion src/python/pants/backend/awslambda/python/lambdex.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ class Lambdex(PythonToolBase):
default_version = "lambdex==0.1.3"
# TODO(John Sirois): Remove when we can upgrade to a version of lambdex with
# https://github.com/wickman/lambdex/issues/6 fixed.
default_extra_requirements = ["setuptools==49.1.0"]
default_extra_requirements = ["setuptools==49.2.0"]
default_entry_point = "lambdex.bin.lambdex"
2 changes: 1 addition & 1 deletion src/python/pants/backend/python/rules/setuptools.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ class Setuptools(PythonToolBase):
# NB: setuptools doesn't have an entrypoint, unlike most python tools.
# We call it via a generated setup.py script.
options_scope = "setuptools"
default_version = "setuptools==49.1.0"
default_version = "setuptools==49.2.0"
default_extra_requirements = ["wheel==0.31.1"]

0 comments on commit 00bbf38

Please sign in to comment.