1
0

typeshed has jsonschema stubs

since https://github.com/python/typeshed/pull/5784
This commit is contained in:
David Robertson
2021-10-06 19:19:24 +01:00
parent 2665e778d9
commit 05bd37099c
2 changed files with 6 additions and 4 deletions

View File

@@ -226,9 +226,6 @@ ignore_missing_imports = True
[mypy-josepy.*]
ignore_missing_imports = True
[mypy-jsonschema]
ignore_missing_imports = True
[mypy-jwt.*]
ignore_missing_imports = True

View File

@@ -112,7 +112,12 @@ CONDITIONAL_REQUIREMENTS["dev"] = CONDITIONAL_REQUIREMENTS["lint"] + [
"pygithub==1.55",
]
CONDITIONAL_REQUIREMENTS["mypy"] = ["mypy==0.812", "mypy-zope==0.2.13"]
CONDITIONAL_REQUIREMENTS["mypy"] = [
"mypy==0.812",
"mypy-zope==0.2.13",
"types-jsonschema>=3.2.0",
]
# Dependencies which are exclusively required by unit test code. This is
# NOT a list of all modules that are necessary to run the unit tests.