From c24b8ad6f77e1cc2ff9dda20800fef3d2e9a7773 Mon Sep 17 00:00:00 2001 From: Hynek Schlawack Date: Wed, 31 Jul 2024 13:26:55 +0200 Subject: [PATCH] Pin breaking Mypy --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4dab4de4..da33d3ce 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,7 +34,7 @@ tests-mypy = [ 'pytest-mypy-plugins; platform_python_implementation == "CPython" and python_version >= "3.9" and python_version < "3.13"', # Since the mypy error messages keep changing, we have to keep updating this # pin. - 'mypy>=1.10.1; platform_python_implementation == "CPython" and python_version >= "3.9"', + 'mypy>=1.10.1,<1.11.1; platform_python_implementation == "CPython" and python_version >= "3.9"', ] tests = [ # For regression test to ensure cloudpickle compat doesn't break.