diff options
-rw-r--r-- | docker/Dockerfile | 2 | ||||
-rw-r--r-- | tox.ini | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index d871acc..990f07e 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -35,7 +35,7 @@ RUN apt-get update && apt-get install -y \ && cp -a /opt/trex/$TREX_VER/automation/trex_control_plane/interactive/trex /usr/local/lib/python3.6/dist-packages/ \ && rm -rf /opt/trex/$TREX_VER/automation/trex_control_plane/interactive/trex \ && wget https://bootstrap.pypa.io/get-pip.py \ - && python3 get-pip.py \ + && python3 get-pip.py pip==20.2.4 \ && pip3 install -U pbr \ && pip3 install -U setuptools \ && cd / \ @@ -4,6 +4,7 @@ envlist = py36,pep8,lint,docs,docs-linkcheck skipsdist = True [testenv] +pip_version = pip==20.2.4 usedevelop = True install_command = pip install -U {opts} {packages} setenv = |