summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Egesdahl <ryan.egesdahl@mongodb.com>2021-01-22 11:05:02 -0800
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-01-27 02:13:37 +0000
commite4bd2ae1c3e3b9c8acd175472239134ffde891de (patch)
tree656c216e7a597605a30dc81249cb8d288497a2b4
parent3b3e3f2bafca78b1acd80102f069fd4a28c2617c (diff)
downloadmongo-e4bd2ae1c3e3b9c8acd175472239134ffde891de.tar.gz
SERVER-53579 Update mypy version
The version of mypy we were depending on was very old and was causing a version conflict on typed-ast with another module. On newer pip versions, the result was a *very* slow process of walking back compatible versions of multiple packages. This change updates mypy to the latest version available.
-rw-r--r--etc/pip/components/lint.req2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/pip/components/lint.req b/etc/pip/components/lint.req
index d6bb91ecbcb..4c1bc8b839a 100644
--- a/etc/pip/components/lint.req
+++ b/etc/pip/components/lint.req
@@ -1,7 +1,7 @@
# Linters
# Note: These versions are checked by python modules in buildscripts/linter/
GitPython ~= 3.1.7
-mypy ~= 0.580; python_version > "3.4"
+mypy ~= 0.800; python_version > "3.5"
pydocstyle == 2.1.1
pylint == 2.3.1
structlog ~= 19.2.0