Skip to content

Commit

Permalink
Disable mypy check for referencing package (apache#35850)
Browse files Browse the repository at this point in the history
The package uses some ignores that use old MyPy check names and
generate syntax error, so we have to disable it to unblock
mypy failures in main/new dependencies.
  • Loading branch information
potiuk authored Nov 25, 2023
1 parent 454e63f commit 2d58e70
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -229,3 +229,8 @@ no_implicit_optional = False
# Let's assume all azure packages have implicit optionals
[mypy-azure.*]
no_implicit_optional = False


[mypy-referencing.*]
# Referencing has some old type annotations that are not compatible with new versions of mypy
ignore_errors = True

0 comments on commit 2d58e70

Please sign in to comment.