We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f3d95e commit 35540f6Copy full SHA for 35540f6
1 file changed
pyproject.toml
@@ -63,10 +63,9 @@ enabler = [
63
64
type = [
65
# upstream
66
- "pytest-mypy >= 1.0.1",
67
-
68
- ## workaround for python/mypy#20454
69
- "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'",
70
71
# local
72
]
0 commit comments