]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
Exclude mypy 0.931 too from tests
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Fri, 7 Jan 2022 18:35:03 +0000 (19:35 +0100)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Fri, 7 Jan 2022 18:36:55 +0000 (19:36 +0100)
It seems still affected by https://github.com/python/mypy/issues/11820.

psycopg/setup.py

index 780eee89760b51dd6686c9c301650e34f7fb9be0..a529ec09370dc7c652fcffbf7460bbc6e54b4213 100644 (file)
@@ -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",
     ],