Skip to content

Commit

Permalink
global: pin pip version in Travis and Dockerfile
Browse files Browse the repository at this point in the history
* There is a problem with latest pip version (20.0),
  more [here](pypa/pip#7217).
  • Loading branch information
Diego Rodriguez committed Jan 21, 2020
1 parent d63a600 commit cb606d5
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 @@ -22,7 +22,7 @@ services:

before_install:
- pip install -r requirements-dev.txt
- travis_retry pip install --upgrade pip setuptools py
- travis_retry pip install --upgrade pip==19.3.1 setuptools py
- travis_retry pip install twine wheel coveralls
- travis_retry pip install "mock>=3"

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN apt-get update && \
apt-get install -y \
gcc \
vim-tiny && \
pip install --upgrade pip
pip install --upgrade pip==19.3.1

RUN apt-get update && \
apt-get upgrade -y && \
Expand Down

0 comments on commit cb606d5

Please sign in to comment.