From d651b08180635d1ddb269d6cd6f0f37edcbdddb3 Mon Sep 17 00:00:00 2001 From: mxamin Date: Mon, 5 Sep 2016 15:02:24 +0430 Subject: [PATCH 1/2] Travis Bugfix: No More `--use-mirror` Option Option `--use-mirrors` have been deprecated in `pip` since version 7.0.0. This will cause the Travis check to be failed for any new pull request. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 2f2c722e..6038df97 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,7 @@ python: - 2.7 install: - - pip install -r requirements.txt --use-mirrors + - pip install -r requirements.txt - python setup.py install script: python setup.py test From f4b0cfb8821c81e03ff6f1fb86da9c4c663368f6 Mon Sep 17 00:00:00 2001 From: mxamin Date: Mon, 5 Sep 2016 15:19:02 +0430 Subject: [PATCH 2/2] Travis Bugfix: Drop Support Python 2.6 In module we are using NTLK which dropped the suport of python 2.6 from version 3.1, so it is better for us to drop it also. --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 6038df97..03e8733f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,6 @@ language: python python: - - 2.6 - 2.7 install: