Skip to content
This repository has been archived by the owner on Sep 16, 2021. It is now read-only.

Commit

Permalink
[pip] require manylinux2010 support which was added in version 19 only
Browse files Browse the repository at this point in the history
  • Loading branch information
das7pad committed Feb 16, 2019
1 parent 78274e6 commit 7f24642
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ EXPOSE $PORTS

RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone \
&& mkdir /app \
&& pip install --no-cache-dir --upgrade 'pip>=18.1' \
&& pip install --no-cache-dir --upgrade 'pip>=19' \
&& true

COPY requirements/requirements.txt /app
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ venv = venv
python=python3

pip = $(venv)/bin/pip
pip_min_version = 18.1
pip_min_version = 19

pip_min_version_guard_base = $(venv)/pip-version
pip_min_version_guard = $(pip_min_version_guard_base)-$(pip_min_version)
Expand Down

0 comments on commit 7f24642

Please sign in to comment.