From d91775ace540391853d3d068914ef01b100ec616 Mon Sep 17 00:00:00 2001 From: Hynek Schlawack Date: Sat, 11 Mar 2023 12:44:49 +0100 Subject: [PATCH] Pin Mypy It's breaking our CI again. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 89c8f60d..58a2f631 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,7 +43,7 @@ tests-no-zope = [ "pytest-xdist[psutil]", # Since the mypy error messages keep changing, we have to keep updating this # pin. - 'mypy>=0.991; python_implementation == "CPython"', + 'mypy>=0.991,<1.1.1; python_implementation == "CPython"', 'pytest-mypy-plugins; python_implementation == "CPython" and python_version<"3.11"', ] tests = ["attrs[tests-no-zope]", "zope.interface"]