Skip to content

Commit b1683e0

Browse files
committed
pydocstyle is unmaintained, switch to ruff
1 parent ad21f9a commit b1683e0

File tree

7 files changed

+30
-22
lines changed

7 files changed

+30
-22
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,6 @@ venv.bak/
106106
.vscode/
107107

108108
testenv*/
109-
pydocstyle_report.txt
110109

111110
# PyCharm
112111
.idea/

Makefile

+5-12
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ EXTRAS=
2929
PYSOURCES=$(filter-out $(MODULE)/parser/cwl_v%,$(shell find $(MODULE) -name "*.py")) \
3030
$(wildcard tests/*.py) create_cwl_from_objects.py load_cwl_by_path.py \
3131
${MODULE}/parser/cwl_v1_?_utils.py docs/conf.py
32-
DEVPKGS=build diff_cover pylint pep257 pydocstyle 'tox<4' tox-pyenv \
32+
DEVPKGS=build diff_cover pylint pep257 ruff 'tox<4' tox-pyenv \
3333
wheel autoflake pyupgrade bandit auto-walrus \
3434
-rlint-requirements.txt -rtest-requirements.txt -rmypy-requirements.txt
35-
DEBDEVPKGS=pep8 python-autopep8 pylint python-coverage pydocstyle sloccount \
35+
DEBDEVPKGS=pep8 python-autopep8 pylint python-coverage ruff sloccount \
3636
python-flake8 python-mock shellcheck
3737
VERSION=v$(shell echo $$(tail -n 1 cwl_utils/__meta__.py | awk '{print $$3}'))
3838
mkfile_dir := $(dir $(abspath $(lastword $(MAKEFILE_LIST))))
@@ -45,8 +45,8 @@ all: dev
4545
help: Makefile
4646
@sed -n 's/^##//p' $<
4747

48-
## cleanup : shortcut for "make sort_imports format flake8 diff_pydocstyle_report"
49-
cleanup: sort_imports format flake8 diff_pydocstyle_report
48+
## cleanup : shortcut for "make sort_imports format flake8 pydocstyle"
49+
cleanup: sort_imports format flake8 pydocstyle
5050

5151
## install-dep : install most of the development dependencies via pip
5252
install-dep: install-dependencies
@@ -95,14 +95,7 @@ remove_unused_imports: $(PYSOURCES)
9595
pep257: pydocstyle
9696
## pydocstyle : check Python docstring style
9797
pydocstyle: $(PYSOURCES)
98-
pydocstyle --add-ignore=D100,D101,D102,D103 $^ || true
99-
100-
pydocstyle_report.txt: $(PYSOURCES)
101-
pydocstyle $^ > $@ 2>&1 || true
102-
103-
## diff_pydocstyle_report : check Python docstring style for changed files only
104-
diff_pydocstyle_report: pydocstyle_report.txt
105-
diff-quality --compare-branch=main --violations=pydocstyle --fail-under=100 $^
98+
ruff check $^
10699

107100
## codespell : check for common misspellings
108101
codespell:

cwl_utils/parser/__init__.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,8 @@ def _get_id_from_graph(yaml: MutableMapping[str, Any], id_: Optional[str]) -> An
142142

143143

144144
def cwl_version(yaml: Any) -> Optional[str]:
145-
"""Return the cwlVersion of a YAML object.
145+
"""
146+
Return the cwlVersion of a YAML object.
146147
147148
:param yaml: ruamel.yaml object for a CWL document
148149

pyproject.toml

+16
Original file line numberDiff line numberDiff line change
@@ -86,3 +86,19 @@ dependencies = {file = ["requirements.txt"]}
8686

8787
[tool.isort]
8888
profile = "black"
89+
90+
[tool.ruff.lint]
91+
select = [
92+
"D", # pydocstyle
93+
]
94+
ignore = [
95+
"D100",
96+
"D101",
97+
"D102",
98+
"D103",
99+
"D104",
100+
"D105",
101+
"D107",
102+
"D203",
103+
"D212",
104+
]

tests/load_cwl_by_path.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
"""This is the example from README.md, please synchronize all changes between the two."""
1+
"""
2+
Example from README.md.
3+
4+
Please synchronize all changes between the two.
5+
"""
26

37
# SPDX-License-Identifier: Apache-2.0
48
from pathlib import Path

tests/test_docker_extract.py

-4
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
)
2323
def test_container_extraction(target: str, engine: str, tmp_path: Path) -> None:
2424
"""Test container extraction tool."""
25-
2625
args = ["--dir", str(tmp_path), get_data(target), "--container-engine", engine]
2726
if engine == "singularity":
2827
args.append("--singularity")
@@ -41,7 +40,6 @@ def test_container_extraction(target: str, engine: str, tmp_path: Path) -> None:
4140
)
4241
def test_container_extraction_force(engine: str, tmp_path: Path) -> None:
4342
"""Test force pull container extraction."""
44-
4543
args = [
4644
"--dir",
4745
str(tmp_path),
@@ -81,7 +79,6 @@ def test_container_extraction_no_dockerPull(
8179
engine: str, tmp_path: Path, capsys: pytest.CaptureFixture[str]
8280
) -> None:
8381
"""Test container extraction tool when dockerPull is missing."""
84-
8582
args = [
8683
"--dir",
8784
str(tmp_path),
@@ -114,7 +111,6 @@ def test_container_extraction_no_dockerPull(
114111
)
115112
def test_container_extraction_embedded_step(engine: str, tmp_path: Path) -> None:
116113
"""Test container extraction tool."""
117-
118114
args = [
119115
"--dir",
120116
str(tmp_path),

tox.ini

+2-3
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,9 @@ extras =
6464

6565
[testenv:py312-pydocstyle]
6666
allowlist_externals = make
67-
commands = make diff_pydocstyle_report
67+
commands = make pydocstyle
6868
deps =
69-
pydocstyle
70-
diff-cover
69+
ruff
7170
skip_install = true
7271

7372
[testenv:py312-lint-readme]

0 commit comments

Comments
 (0)