From: Alex Rothberg Date: Wed, 18 Jul 2018 14:40:52 +0000 (-0400) Subject: Add `postgresql_psycopg2binary` install extra that installs `psycopg2-binary` X-Git-Tag: rel_1_2_11~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=021dcd123c3e13e90e5b79b8a9104131c8165682;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git 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) --- 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'],