From 84f60d19795fb5c883d662877ab41d5f18c6cff3 Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Fri, 7 Jan 2022 19:35:03 +0100 Subject: [PATCH] Exclude mypy 0.931 too from tests It seems still affected by https://github.com/python/mypy/issues/11820. --- psycopg/setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/psycopg/setup.py b/psycopg/setup.py index 780eee897..a529ec093 100644 --- a/psycopg/setup.py +++ b/psycopg/setup.py @@ -37,7 +37,7 @@ extras_require = { ], # Requirements to run the test suite "test": [ - "mypy >= 0.920, != 0.930", + "mypy >= 0.920, != 0.930, != 0.931", "pproxy >= 2.7", "pytest >= 6.2.5", "pytest-asyncio >= 0.16", @@ -50,7 +50,7 @@ extras_require = { "black >= 21.12b0", "dnspython >= 2.1", "flake8 >= 4.0", - "mypy >= 0.920, != 0.930", + "mypy >= 0.920, != 0.930, != 0.931", "types-setuptools >= 57.4", "wheel >= 0.36", ], -- 2.47.3