Skip to content

Commit 62f8070

Browse files
authored
Specify skip for separate referencing package (#2049)
Fixes the mypy error that is causing all pipelines to fail. Underlying reason seems to be that the `jsonschema` library was updated and factored out some code into a separate package. So updated it to also reference that file in our mypy overrides. Might be fixed for newer versions by this recent commit python-jsonschema/referencing@f830e4c
1 parent 1d4bb81 commit 62f8070

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pyproject.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,3 +109,7 @@ exclude_lines = [
109109
[[tool.mypy.overrides]]
110110
module = "referencing.jsonschema.*"
111111
follow_imports = "skip"
112+
113+
[[tool.mypy.overrides]]
114+
module = "referencing._core.*"
115+
follow_imports = "skip"

0 commit comments

Comments
 (0)