From b2cd707fa739f4916ee4db97789ccb112a946725 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Thu, 17 Jun 2021 09:14:08 +0200 Subject: [PATCH] setup.py: limit psycopg2 to < 2.9 (#54925) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f37be25..d87f789 100644 --- a/setup.py +++ b/setup.py @@ -109,7 +109,7 @@ setup( install_requires=[ 'django<2.3', 'isodate', - 'psycopg2', + 'psycopg2<2.9', 'jsonschema', 'gadjo', 'six',