summaryrefslogtreecommitdiff
path: root/buildscripts/linter/pydocstyle.py
diff options
context:
space:
mode:
authorRobert Guo <robert.guo@mongodb.com>2022-05-31 14:37:42 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-05-31 15:03:45 +0000
commit86cb7ea3649b2190958a1645de9d3df4a529fc90 (patch)
treed151ad13d193180966201ec4e619ec4e422313cc /buildscripts/linter/pydocstyle.py
parent2fe7afd99f8158306415470286622c3712bebce3 (diff)
downloadmongo-r6.0.0-rc8.tar.gz
SERVER-65672 upgrade python packages to support 3.10r6.0.0-rc8
Diffstat (limited to 'buildscripts/linter/pydocstyle.py')
-rw-r--r--buildscripts/linter/pydocstyle.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/linter/pydocstyle.py b/buildscripts/linter/pydocstyle.py
index 8d6b7dde0c7..9e8a74a3857 100644
--- a/buildscripts/linter/pydocstyle.py
+++ b/buildscripts/linter/pydocstyle.py
@@ -11,7 +11,7 @@ class PyDocstyleLinter(base.LinterBase):
def __init__(self):
# type: () -> None
"""Create a pydocstyle linter."""
- super(PyDocstyleLinter, self).__init__("pydocstyle", "2.1.1")
+ super(PyDocstyleLinter, self).__init__("pydocstyle", "6.1.1")
def get_lint_version_cmd_args(self):
# type: () -> List[str]