From: Denis Laxalde Date: Wed, 5 May 2021 15:02:58 +0000 (+0200) Subject: Upgrade testing libraries (#50) X-Git-Tag: 3.0.dev0~53 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d2a8eed3b7218d3ef8138f9c704fe80fa101e612;p=thirdparty%2Fpsycopg.git Upgrade testing libraries (#50) Use latest versions of testing libraries pytest is broken on Python 3.10, until version 6.2.4. --- diff --git a/psycopg3/setup.py b/psycopg3/setup.py index a2fc7ab99..068305805 100644 --- a/psycopg3/setup.py +++ b/psycopg3/setup.py @@ -34,10 +34,10 @@ extras_require = { "test": [ "mypy >= 0.812", "pproxy >= 2.7, < 2.8", - "pytest >= 6, < 6.1", - "pytest-asyncio >= 0.14.0, < 0.15", - "pytest-randomly >= 3.5, < 3.6", - "tenacity >= 6.3, < 6.4", + "pytest >= 6.2.4, < 6.3", + "pytest-asyncio >= 0.15.0, < 0.16", + "pytest-randomly >= 3.7, < 3.8", + "tenacity >= 7, < 7.1", ], "dev": [ "black",