From ec8048528a787c093f0e2fc671609c5fb60b24c3 Mon Sep 17 00:00:00 2001 From: "Mattew S." <52506836+HK-Mattew@users.noreply.github.com> Date: Tue, 19 Nov 2024 11:48:44 -0300 Subject: [PATCH] Install psycopg with the `binary` extra (#992) This allows developers to run the test suite without having `libpq5` on their system. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index de59cd29..d2b61a23 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -55,7 +55,7 @@ test = [ "anyio[trio]", "asyncmy >= 0.2.5; python_implementation == 'CPython'", "coverage >= 7", - "psycopg", + "psycopg[binary]", "pymongo >= 4", "pymysql[rsa]", "PySide6 >= 6.6; python_implementation == 'CPython' and python_version < '3.13'",