Skip to content

Commit

Permalink
Merge pull request #250 from brunns/build/mypy-1.11-breaks-build
Browse files Browse the repository at this point in the history
Mypy 1.11.0 is breaking the build, so pinning 1.10.1 for now.
  • Loading branch information
offbyone committed Jul 23, 2024
2 parents 498ea96 + aa529fb commit 1721081
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ tests = [
# No point on Pypy thanks to https://github.com/python/typed_ast/issues/111
"pytest-mypy-plugins; platform_python_implementation != 'PyPy'",
# Can't use 0.940: https://github.com/python/mypy/issues/12339
"mypy!=0.940; platform_python_implementation != 'PyPy'",
"mypy<=1.10.1; platform_python_implementation != 'PyPy'",
"types-mock",
"pyyaml",
]
Expand All @@ -67,6 +67,7 @@ dev = [
"PyHamcrest[docs,tests]",
"towncrier",
"twine",
"mypy<=1.10.1",
"pytest-mypy",
"flake8",
"black",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ commands = towncrier --draft
[testenv:typing]
basepython = python3.12
deps =
mypy
mypy <= 1.10.1
types-mock
commands =
mypy src/
Expand Down

0 comments on commit 1721081

Please sign in to comment.