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 <[email protected]> --- requirements-prod.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-prod.txt b/requirements-prod.txt index 1d2f591..596eb6d 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.0.0 _______________________________________________ Patchwork mailing list [email protected] https://lists.ozlabs.org/listinfo/patchwork
