From 2f1ee93e86dc9679c28d4ad746ffb0149070a057 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Tue, 6 Mar 2018 10:01:45 +0100 Subject: [PATCH] Install psycopg2-binary --- src/requirements/postgres.txt | 2 +- src/setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/requirements/postgres.txt b/src/requirements/postgres.txt index 6ccfa4b1a5..deab58fa3f 100644 --- a/src/requirements/postgres.txt +++ b/src/requirements/postgres.txt @@ -1,2 +1,2 @@ -psycopg2 +psycopg2-binary diff --git a/src/setup.py b/src/setup.py index 3f40eda78f..918c7f5d20 100644 --- a/src/setup.py +++ b/src/setup.py @@ -132,7 +132,7 @@ setup( ], 'memcached': ['pylibmc'], 'mysql': ['mysqlclient'], - 'postgres': ['psycopg2'], + 'postgres': ['psycopg2-binary'], }, packages=find_packages(exclude=['tests', 'tests.*']),