URL: https://github.com/freeipa/freeipa/pull/772 Author: martbab Title: #772: Travis CI: explicitly update pip before running the builds Action: synchronized
To pull the PR as Git branch: git remote add ghfreeipa https://github.com/freeipa/freeipa git fetch ghfreeipa pull/772/head:pr772 git checkout pr772
From ac03074839f3602df8c95be89d52ef4ae8238033 Mon Sep 17 00:00:00 2001 From: Martin Babinsky <mbabi...@redhat.com> Date: Tue, 9 May 2017 18:36:51 +0200 Subject: [PATCH] Travis CI: explicitly update pip before running the builds This is to workaround around https://github.com/travis-ci/travis-ci/issues/7733 and issues with implicit requirement of python-requests on newer pip. --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 1a8f1b3..c275cdc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -28,6 +28,8 @@ env: test_pkcs10 test_xmlrpc/test_[l-z]*.py" install: + - pip install --upgrade pip + - pip3 install --upgrade pip - pip install pep8 - > pip3 install
-- Manage your subscription for the Freeipa-devel mailing list: https://www.redhat.com/mailman/listinfo/freeipa-devel Contribute to FreeIPA: http://www.freeipa.org/page/Contribute/Code