From c8f6567336122f1d5c6b30328a63fb2a102aeb98 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Fri, 5 Feb 2016 15:12:25 +0000 Subject: [PATCH] requirements: Use PostgreSQL in production The example "production" settings expect a PostgreSQL database backend, yet the requirements file for the same scenario install MySQL dependencies. Correct this mismatch. Signed-off-by: Stephen Finucane --- requirements-prod.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-prod.txt b/requirements-prod.txt index 1d2f5917..596eb6dc 100644 --- a/requirements-prod.txt +++ b/requirements-prod.txt @@ -1,2 +1,2 @@ Django<1.9,>=1.8 -mysqlclient==1.3.7 +psycopg2==2.6.1 -- 2.47.3