Skip to content

Commit

Permalink
Tests: CI: Temporary pin pip to < 19.0.
Browse files Browse the repository at this point in the history
pip 19.0 fails to install PyInstaller, see pypa/pip#6163. Until this is
solve d (or another solution is provided), pin pip.
  • Loading branch information
htgoebel committed Jan 23, 2019
1 parent 37ee35d commit bcefd6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit bcefd6d

Please sign in to comment.