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_3_0b1~122 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5469dd1b8f19960a319464327bcd2425f31543bf;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 --- 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'],