From 5469dd1b8f19960a319464327bcd2425f31543bf Mon Sep 17 00:00:00 2001 From: Alex Rothberg Date: Wed, 18 Jul 2018 10:40:52 -0400 Subject: [PATCH] Add `postgresql_psycopg2binary` install extra that installs `psycopg2-binary` Fixes: #4306 Change-Id: I26edc1a4ac8a7f9f3f258bb03009ebfa4cc00e1a Pull-request: https://github.com/zzzeek/sqlalchemy/pull/465 --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 5c1ff77ffe..a4b0b9e170 100644 --- a/setup.py +++ b/setup.py @@ -157,6 +157,7 @@ def run_setup(with_cext): 'mysql': ['mysqlclient'], 'pymysql': ['pymysql'], 'postgresql': ['psycopg2'], + 'postgresql_psycopg2binary': ['psycopg2-binary'], 'postgresql_pg8000': ['pg8000'], 'postgresql_psycopg2cffi': ['psycopg2cffi'], 'oracle': ['cx_oracle'], -- 2.47.2