Skip to content

Commit d3af7d0

Browse files
committed
Pass mypy and link issues
1 parent 8e1767a commit d3af7d0

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

mypy.ini

+9
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,12 @@ explicit_package_bases = True
1212

1313
# Disable overload-overlap due to many false-positives
1414
disable_error_code = overload-overlap
15+
16+
# jaraco/jaraco.develop#20
17+
# Lucretiel/autocommand#38
18+
[mypy-autocommand.*]
19+
ignore_missing_imports = True
20+
21+
# requests/toolbelt#279
22+
[mypy-requests_toolbelt.*]
23+
ignore_missing_imports = True

pyproject.toml

+1-5
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ test = [
3535
"pytest >= 6, != 8.1.*",
3636

3737
# local
38-
"types-docutils",
3938
]
4039

4140
doc = [
@@ -67,11 +66,8 @@ type = [
6766
"pytest-mypy",
6867

6968
# local
69+
"types-docutils",
7070
]
7171

7272

7373
[tool.setuptools_scm]
74-
75-
76-
[tool.pytest-enabler.mypy]
77-
# Disabled due to jaraco/skeleton#143

0 commit comments

Comments
 (0)