From: Daniele Varrazzo Date: Wed, 22 Dec 2021 19:46:51 +0000 (+0100) Subject: Avoid mypy version 0.930 X-Git-Tag: pool-3.1~69 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=26cda0bce659b1b95834b95f2ef02527778af7dd;p=thirdparty%2Fpsycopg.git Avoid mypy version 0.930 The release is affected by the issues: - https://github.com/python/mypy/issues/11820 - https://github.com/python/typeshed/issues/6661 already acknowledged as bugs. --- diff --git a/psycopg/setup.py b/psycopg/setup.py index 68f5d8193..e8880f643 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", + "mypy >= 0.920, != 0.930", "pproxy ~= 2.7.8", "pytest ~= 6.2.5", "pytest-asyncio ~= 0.16.0", @@ -50,7 +50,7 @@ extras_require = { "black", "dnspython ~= 2.1.0", "flake8 ~= 4.0.1", - "mypy >= 0.920", + "mypy >= 0.920, != 0.930", "pytest-mypy >= 0.8.1", "types-setuptools >= 57.4.0", "wheel",