From bd2a0eef9a3ab16d72f1cfc77a5860859b36f9af Mon Sep 17 00:00:00 2001 From: Ronan Dunklau Date: Wed, 18 Jan 2023 09:37:22 +0100 Subject: [PATCH] Bump the minimal psycpog2 version. We use the psycopg2.errors package, introduced in psycpog2 2.8. We should reflect that in our dependencies. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index bbd1c3dc..5abc5010 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ packages=find_packages(exclude=["test"]), install_requires=[ "cryptography", - "psycopg2 >= 2.0.0", + "psycopg2 >= 2.8.0", "pydantic", "python-dateutil", "python-snappy >= 0.5",