Skip to content

Commit 6e0673d

Browse files
committed
chore: remove pydocstyle references
1 parent 313bdd9 commit 6e0673d

File tree

4 files changed

+3
-34
lines changed

4 files changed

+3
-34
lines changed

requirements/dev.txt

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -201,8 +201,6 @@ pycparser==2.22
201201
# via
202202
# -r requirements/quality.txt
203203
# cffi
204-
pydocstyle==6.3.0
205-
# via -r requirements/quality.txt
206204
pygments==2.19.1
207205
# via diff-cover
208206
pylint==3.3.6
@@ -264,17 +262,13 @@ redis==5.2.1
264262
# via
265263
# -r requirements/quality.txt
266264
# walrus
267-
ruff==0.11.5
265+
ruff==0.11.6
268266
# via -r requirements/quality.txt
269267
six==1.17.0
270268
# via
271269
# -r requirements/quality.txt
272270
# edx-ccx-keys
273271
# edx-lint
274-
snowballstemmer==2.2.0
275-
# via
276-
# -r requirements/quality.txt
277-
# pydocstyle
278272
sqlparse==0.5.3
279273
# via
280274
# -r requirements/quality.txt

requirements/quality.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,4 @@
77
edx-lint # edX pylint rules and plugins
88
isort # to standardize order of imports
99
pycodestyle # PEP 8 compliance validation
10-
pydocstyle # PEP 257 compliance validation
1110
ruff # A modern Python code linter and formatter.

requirements/quality.txt

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,6 @@ pycparser==2.22
135135
# via
136136
# -r requirements/test.txt
137137
# cffi
138-
pydocstyle==6.3.0
139-
# via -r requirements/quality.in
140138
pylint==3.3.6
141139
# via
142140
# edx-lint
@@ -180,15 +178,13 @@ redis==5.2.1
180178
# via
181179
# -r requirements/test.txt
182180
# walrus
183-
ruff==0.11.5
181+
ruff==0.11.6
184182
# via -r requirements/quality.in
185183
six==1.17.0
186184
# via
187185
# -r requirements/test.txt
188186
# edx-ccx-keys
189187
# edx-lint
190-
snowballstemmer==2.2.0
191-
# via pydocstyle
192188
sqlparse==0.5.3
193189
# via
194190
# -r requirements/test.txt

tox.ini

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,6 @@ envlist = py{311,312}-django{42,52}, docs, quality
55
exclude = .git,.tox,migrations
66
max-line-length = 120
77

8-
[pydocstyle]
9-
; D101 = Missing docstring in public class
10-
; D200 = One-line docstring should fit on one line with quotes
11-
; D203 = 1 blank line required before class docstring
12-
; D212 = Multi-line docstring summary should start at the first line
13-
; D215 = Section underline is over-indented (numpy style)
14-
; D404 = First word of the docstring should not be This (numpy style)
15-
; D405 = Section name should be properly capitalized (numpy style)
16-
; D406 = Section name should end with a newline (numpy style)
17-
; D407 = Missing dashed underline after section (numpy style)
18-
; D408 = Section underline should be in the line following the section's name (numpy style)
19-
; D409 = Section underline should match the length of its name (numpy style)
20-
; D410 = Missing blank line after section (numpy style)
21-
; D411 = Missing blank line before section (numpy style)
22-
; D412 = No blank lines allowed between a section header and its content (numpy style)
23-
; D413 = Missing blank line after last section (numpy style)
24-
; D414 = Section has no content (numpy style)
25-
ignore = D101,D200,D203,D212,D215,D404,D405,D406,D407,D408,D409,D410,D411,D412,D413,D414
26-
match-dir = (?!migrations).*
27-
288
[pytest]
299
DJANGO_SETTINGS_MODULE = test_settings
3010
addopts = --cov edx_event_bus_redis --cov-report term-missing --cov-report xml
@@ -72,7 +52,7 @@ commands =
7252
pylint edx_event_bus_redis tests test_utils manage.py setup.py
7353
rm tests/__init__.py
7454
pycodestyle edx_event_bus_redis tests manage.py setup.py
75-
pydocstyle edx_event_bus_redis tests manage.py setup.py
55+
ruff check edx_event_bus_redis tests manage.py setup.py
7656
isort --check-only --diff tests test_utils edx_event_bus_redis manage.py setup.py test_settings.py
7757
make selfcheck
7858

0 commit comments

Comments
 (0)