Skip to content

Commit 748e2df

Browse files
committed
Pass mypy and link issues
1 parent e09cf60 commit 748e2df

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
@@ -13,3 +13,12 @@ explicit_package_bases = True
1313
disable_error_code =
1414
# Disable due to many false positives
1515
overload-overlap,
16+
17+
# jaraco/jaraco.develop#20
18+
# Lucretiel/autocommand#38
19+
[mypy-autocommand.*]
20+
ignore_missing_imports = True
21+
22+
# requests/toolbelt#279
23+
[mypy-requests_toolbelt.*]
24+
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)