From: Daniele Varrazzo Date: Fri, 7 Jan 2022 18:35:03 +0000 (+0100) Subject: Exclude mypy 0.931 too from tests X-Git-Tag: pool-3.1~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=84f60d19795fb5c883d662877ab41d5f18c6cff3;p=thirdparty%2Fpsycopg.git Exclude mypy 0.931 too from tests It seems still affected by https://github.com/python/mypy/issues/11820. --- 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", ],