From 260f0469895e689b5bf48f4e6ad53674e66d52fa Mon Sep 17 00:00:00 2001 From: Hartmut Goebel Date: Wed, 23 Jan 2019 15:25:07 +0100 Subject: [PATCH] Tests: CI: Temporary pin pip to < 19.0. pip 19.0 fails to install PyInstaller, see pypa/pip#6163. Until this is solve d (or another solution is provided), pin pip. --- .travis.yml | 2 +- appveyor.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index aae1edba5b..3d6ac9d6db 100644 --- a/.travis.yml +++ b/.travis.yml @@ -150,7 +150,7 @@ before_install: install: # Update pip. - - python -m pip install -U pip setuptools wheel | cat + - python -m pip install -U 'pip<19.0' setuptools wheel | cat # Install dependencies for tests. - pip install --progress-bar=off -U -r tests/requirements-tools.txt diff --git a/appveyor.yml b/appveyor.yml index 19d577174f..36f3f2114c 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -125,7 +125,7 @@ install: ### Install the PyInstaller dependencies. # Upgrade to the latest pip. - - python -m pip install -U pip setuptools wheel + - python -m pip install -U 'pip<19.0' setuptools wheel # Install the PyInstaller test dependencies. - pip install -U -r tests/requirements-libraries.txt