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 e476f18 commit 880aabd
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

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

COPY CHANGES.rst README.rst setup.py /code/
COPY reana_server/version.py /code/reana_server/
Expand Down

0 comments on commit 880aabd

Please sign in to comment.