Skip to content

Commit e9285df

Browse files
committed
2 parents f3e711d + a0d0c4b commit e9285df

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

ruff.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
[lint]
2+
extend-select = [
3+
"C901",
4+
"W",
5+
]
26
ignore = [
37
# https://docs.astral.sh/ruff/formatter/#conflicting-lint-rules
48
"W191",

setup.cfg

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,7 @@ testing =
3131
pytest >= 6
3232
pytest-checkdocs >= 2.4
3333
pytest-cov
34-
pytest-mypy; \
35-
# workaround for jaraco/skeleton#22
36-
python_implementation != "PyPy"
34+
pytest-mypy
3735
pytest-enabler >= 2.2
3836
pytest-ruff >= 0.2.1
3937

@@ -42,8 +40,6 @@ testing =
4240
docs =
4341
# upstream
4442
sphinx >= 3.5
45-
# workaround for sphinx/sphinx-doc#11662
46-
sphinx < 7.2.5
4743
jaraco.packaging >= 9.3
4844
rst.linker >= 1.9
4945
furo

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ extras =
1212
[testenv:diffcov]
1313
description = run tests and check that diff from main is covered
1414
deps =
15+
{[testenv]deps}
1516
diff-cover
1617
commands =
1718
pytest {posargs} --cov-report xml

0 commit comments

Comments
 (0)