From 021dcd123c3e13e90e5b79b8a9104131c8165682 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 (cherry picked from commit 5469dd1b8f19960a319464327bcd2425f31543bf) --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index e1d8fba912..6922b7d21a 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