From 06d3bf0ea730ff0ab1d3ad0e2cf1fc49ea809523 Mon Sep 17 00:00:00 2001 From: James Curtin Date: Tue, 4 Jun 2019 09:54:39 -0400 Subject: [PATCH] Use binary version of psycopg Beginning with the 2.8 release of psycopg, the package is built from source, requiring the user to install system dependencies. Switch to using psycopg-binary package to maintain pre-2.8 behavior of installing from wheel --- {{cookiecutter.app_name}}/requirements/prod.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.app_name}}/requirements/prod.txt b/{{cookiecutter.app_name}}/requirements/prod.txt index bc9ea0c..1fe7200 100644 --- a/{{cookiecutter.app_name}}/requirements/prod.txt +++ b/{{cookiecutter.app_name}}/requirements/prod.txt @@ -10,7 +10,7 @@ click>=5.0 # Database Flask-SQLAlchemy==2.3.2 -psycopg2==2.8.2 +psycopg2-binary==2.8.2 SQLAlchemy==1.2.11 # Migrations