From e6262be127dbff46cfcbf64eb56b322e63e88606 Mon Sep 17 00:00:00 2001 From: Stephen Burrows Date: Thu, 27 Apr 2017 18:13:33 -0700 Subject: [PATCH] Corrected psycopg2 version bump --- .travis.yml | 2 +- test_project/requirements.txt | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 72a3c4a..0d9afd2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -53,7 +53,7 @@ install: - pip install --no-deps -r test_project/requirements-$DJANGO.txt - pip install flake8 - if [ $DB == 'mysql' ]; then pip install --no-deps mysqlclient; fi - - if [ $DB == 'postgres' ]; then pip install --no-deps psycopg2==2.5.3; fi + - if [ $DB == 'postgres' ]; then pip install --no-deps psycopg2==2.7.1; fi before_script: - "flake8 --ignore=E501,E731 daguerre" - if [ $DB == 'mysql' ]; then mysql -e 'CREATE DATABASE daguerre_test;'; fi diff --git a/test_project/requirements.txt b/test_project/requirements.txt index 33a800e..6fc8fad 100644 --- a/test_project/requirements.txt +++ b/test_project/requirements.txt @@ -2,5 +2,4 @@ Pillow==3.2.0 funcsigs==0.4 mock==1.3.0 pbr==1.8.1 -psycopg2==2.7.1 six==1.10.0