Bump mypy-zope to 0.2.13. (#9678)

This fixes an error ("Cannot determine consistent method resolution order (MRO)")
when running mypy with a cache.
pull/9667/head
Patrick Cloke 2021-03-24 07:35:43 -04:00 committed by GitHub
parent af387cf52a
commit 83de0be4b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

1
changelog.d/9678.misc Normal file
View File

@ -0,0 +1 @@
Bump mypy-zope to 0.2.13 to fix "Cannot determine consistent method resolution order (MRO)" errors when running mypy a second time.

View File

@ -103,7 +103,7 @@ CONDITIONAL_REQUIREMENTS["lint"] = [
"flake8",
]
CONDITIONAL_REQUIREMENTS["mypy"] = ["mypy==0.812", "mypy-zope==0.2.11"]
CONDITIONAL_REQUIREMENTS["mypy"] = ["mypy==0.812", "mypy-zope==0.2.13"]
# Dependencies which are exclusively required by unit test code. This is
# NOT a list of all modules that are necessary to run the unit tests.