From d2a8eed3b7218d3ef8138f9c704fe80fa101e612 Mon Sep 17 00:00:00 2001 From: Denis Laxalde Date: Wed, 5 May 2021 17:02:58 +0200 Subject: [PATCH] Upgrade testing libraries (#50) Use latest versions of testing libraries pytest is broken on Python 3.10, until version 6.2.4. --- psycopg3/setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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", -- 2.47.3