summaryrefslogtreecommitdiff
path: root/buildscripts/linter/yapf.py
diff options
context:
space:
mode:
authorRyan Egesdahl <ryan.egesdahl@mongodb.com>2020-08-27 11:05:57 -0700
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-09-01 01:19:35 +0000
commitca4df25002a60910b38bfdd8d71eb5bff5a79b49 (patch)
treea5a0c9693dc5a07a4914b51ed56a0b8bd14a211d /buildscripts/linter/yapf.py
parentc70016c56f4f34ba09f4975fbf5bb3ac5129b5f7 (diff)
downloadmongo-ca4df25002a60910b38bfdd8d71eb5bff5a79b49.tar.gz
SERVER-50592 Update mypy and GitPython pip requirements
Update the mypy and GitPython pip modules that are required for linting builds before commits to compatible versions rather than hard version requirements.
Diffstat (limited to 'buildscripts/linter/yapf.py')
-rw-r--r--buildscripts/linter/yapf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/linter/yapf.py b/buildscripts/linter/yapf.py
index d787810a0da..e339e3fc763 100644
--- a/buildscripts/linter/yapf.py
+++ b/buildscripts/linter/yapf.py
@@ -11,7 +11,7 @@ class YapfLinter(base.LinterBase):
def __init__(self):
# type: () -> None
"""Create a yapf linter."""
- super(YapfLinter, self).__init__("yapf", "yapf 0.26.0")
+ super(YapfLinter, self).__init__("yapf", "0.26.0")
def get_lint_version_cmd_args(self):
# type: () -> List[str]