Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,9 @@ enabler = [

type = [
# upstream
"pytest-mypy >= 1.0.1",

## workaround for python/mypy#20454
"mypy < 1.19; python_implementation == 'PyPy'",
# static type checking doesn't need to be run on PyPy.
# This also prevents sudden unexpected failure from incompatibilities
"pytest-mypy >= 1.0.1; platform_python_implementation != 'PyPy'",
Comment thread
jaraco marked this conversation as resolved.
Outdated
Comment thread
jaraco marked this conversation as resolved.

# local
]
Expand Down
Loading