Skip to content

Commit edf22f9

Browse files
Merge pull request #1030 from adamtheturtle/pyup-update-pydocstyle-3.0.0-to-4.0.0
Update pydocstyle to 4.0.0
2 parents dc9c64c + 7d22499 commit edf22f9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

dev-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ flake8==3.7.8 # Lint
1010
isort==4.3.21 # Lint imports
1111
mypy==0.720 # Type checking
1212
pip_check_reqs==2.0.3
13-
pydocstyle==3.0.0 # Lint docstrings
13+
pydocstyle==4.0.0 # Lint docstrings
1414
pyenchant==2.0.0 # Bindings for a spellchecking sytem
1515
pygithub==1.43.8
1616
Pygments==2.4.2

setup.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ ignore_errors = True
8989
# - D200
9090
# - D205
9191
# - D400
92+
# - D415
9293
# We don't want blank lines before class docstrings
9394
# - D203
9495
# We don't need docstrings to start at the first line
@@ -102,7 +103,7 @@ ignore_errors = True
102103
# No blank line is needed after the last section
103104
# Do not care about imperative mood
104105
# - D401
105-
ignore = D200,D202,D203,D205,D212,D400,D406,D407,D413,D401
106+
ignore = D200,D202,D203,D205,D212,D400,D406,D407,D413,D401,D415
106107
match=(?!.*(versioneer|test_|_version)).*\.py
107108

108109
[isort]

0 commit comments

Comments
 (0)