From 16de3e1dff72a34601e7bc264034a5cc9999d081 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Wed, 17 Feb 2016 21:18:36 +0530 Subject: [PATCH] travis: Require a specific version of pgi for fix pgi 0.0.11.1 does not build successfully however 0.0.10.1 works. Reported upstream issue https://github.com/lazka/pgi/issues/31. Meanwile, to fix the builds, depend on older version. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 65cf9d827..469874405 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,7 +18,7 @@ before_install: install: - pip install Django$DJANGO_VERSION - pip install coverage==3.7 - - pip install "pgi>=0.0.10.1" + - pip install "pgi==0.0.10.1" - pip install -r requirements.txt # Command to run tests