From: Daniele Varrazzo Date: Thu, 30 Sep 2021 18:59:35 +0000 (+0200) Subject: Upgrade testing dependencies X-Git-Tag: 3.0~42 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c8b9732c5d3b953ad17e32dfd7400f7170273472;p=thirdparty%2Fpsycopg.git Upgrade testing dependencies Some are required for Python 3.10 --- diff --git a/psycopg/setup.py b/psycopg/setup.py index 04d415632..9f15b1e17 100644 --- a/psycopg/setup.py +++ b/psycopg/setup.py @@ -37,18 +37,18 @@ extras_require = { ], # Requirements to run the test suite "test": [ - "mypy >= 0.812", - "pproxy >= 2.7, < 2.8", - "pytest >= 6.2.4, < 6.3", - "pytest-asyncio >= 0.15.0, < 0.16", - "pytest-randomly >= 3.7, < 3.8", - "tenacity >= 7, < 7.1", + "mypy >= 0.910", + "pproxy ~= 2.7.8", + "pytest ~= 6.2.5", + "pytest-asyncio ~= 0.15.1", + "pytest-randomly ~= 3.10.1", + "tenacity ~= 8.0.1", ], # Requirements needed for development "dev": [ "black", "flake8 ~= 3.9.2", - "mypy >= 0.812", + "mypy >= 0.910", "wheel", ], # Requirements needed to build the documentation