Skip to content

Commit

Permalink
Exclude mypy on Python 3.10 as workaround for python/typed_ast#156.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Mar 7, 2021
1 parent a25bc25 commit cc014c1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.cfg
Expand Up @@ -38,7 +38,8 @@ testing =
pytest-black >= 0.3.7; python_implementation != "PyPy"
pytest-cov
# python_implementation: workaround for jaraco/skeleton#22
pytest-mypy; python_implementation != "PyPy"
# python_version: workaround for python/typed_ast#156
pytest-mypy; python_implementation != "PyPy" and python_version < "3.10"
pytest-enabler

# local
Expand Down

0 comments on commit cc014c1

Please sign in to comment.