From cf97b99e392cf06ce40785d379abf112daded05b Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Mon, 18 Feb 2019 12:10:34 +0100 Subject: [PATCH] Used psycopg2-binary instead of deprecated psycopg2 name. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index ed24a19..a0047dc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -40,7 +40,7 @@ before_script: - psql -c 'create database modeltranslation;' -U postgres install: - if [[ $DB == mysql ]]; then pip install -q mysqlclient; fi - - if [[ $DB == postgres ]]; then pip install -q psycopg2; fi + - if [[ $DB == postgres ]]; then pip install -q psycopg2-binary; fi - pip install -q Pillow - IDJANGO=$(./travis.py $DJANGO) - pip install -q $IDJANGO