From 958a590e539feb1cc3feb7c87635dea906eae191 Mon Sep 17 00:00:00 2001 From: Nick Pope Date: Wed, 22 Nov 2023 13:39:04 +0000 Subject: [PATCH] Refs #34986 -- Used non-binary build of psycopg for PyPy. --- tests/requirements/postgres.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/requirements/postgres.txt b/tests/requirements/postgres.txt index da00729319..ab215b1ebc 100644 --- a/tests/requirements/postgres.txt +++ b/tests/requirements/postgres.txt @@ -1 +1,2 @@ -psycopg[binary]>=3.1.8 +psycopg>=3.1.14; implementation_name == 'pypy' +psycopg[binary]>=3.1.8; implementation_name != 'pypy'