From eda7f691e572b2a6e0e821d6cb024dffd549e30d Mon Sep 17 00:00:00 2001 From: Asher Foa <1268088+asherf@users.noreply.github.com> Date: Thu, 11 Jul 2019 15:11:32 -0700 Subject: [PATCH] psycopg2 is busted on newer version of python (3.7), so switch to psycopg2-binary --- setup.py | 2 +- test-requires.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 1aa37ef..f836357 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ requires = [ 'django', - 'psycopg2', + 'psycopg2-binary', ] diff --git a/test-requires.txt b/test-requires.txt index 53f8214..c91b866 100644 --- a/test-requires.txt +++ b/test-requires.txt @@ -1,3 +1,3 @@ -psycopg2>=2.7 +psycopg2-binary>=2.7 pytest mock>=2.0