summaryrefslogtreecommitdiff
path: root/buildscripts/eslint.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/eslint.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/eslint.py')
-rwxr-xr-xbuildscripts/eslint.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/buildscripts/eslint.py b/buildscripts/eslint.py
index 92a90b03ff3..1793ac7cee8 100755
--- a/buildscripts/eslint.py
+++ b/buildscripts/eslint.py
@@ -92,6 +92,7 @@ def get_eslint_from_cache(dest_file, platform, arch):
print("Downloading ESLint %s from %s, saving to %s" % (ESLINT_VERSION, url, temp_tar_file))
urllib.request.urlretrieve(url, temp_tar_file)
+ # pylint: disable=too-many-function-args
eslint_distfile = ESLINT_SOURCE_TAR_BASE.substitute(platform=platform, arch=arch)
extract_eslint(temp_tar_file, eslint_distfile)
shutil.move(eslint_distfile, dest_file)