This is an automated email from the ASF dual-hosted git repository.

gmurthy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-dispatch.git


The following commit(s) were added to refs/heads/master by this push:
     new 8a1e6d7  NO-JIRA - Removed --user parameter from pip install. It was 
causing the following error and preventing tests from executing   WARNING: The 
script hypercorn is installed in '/root/.local/bin' which is not on PATH.   
Consider adding this directory to PATH or, if you prefer to suppress this 
warning, use --no-warn-script-location.   WARNING: The script quart is 
installed in '/root/.local/bin' which is not on PATH.   Consider adding this 
directory to PATH or, if you prefer to [...]
8a1e6d7 is described below

commit 8a1e6d78e62a167c3b8bfa5d9d4659fe2c56d5f4
Author: Ganesh Murthy <gmur...@apache.org>
AuthorDate: Wed Dec 16 13:48:29 2020 -0500

    NO-JIRA - Removed --user parameter from pip install. It was causing the 
following error and preventing tests from executing
      WARNING: The script hypercorn is installed in '/root/.local/bin' which is 
not on PATH.
      Consider adding this directory to PATH or, if you prefer to suppress this 
warning, use --no-warn-script-location.
      WARNING: The script quart is installed in '/root/.local/bin' which is not 
on PATH.
      Consider adding this directory to PATH or, if you prefer to suppress this 
warning, use --no-warn-script-location.
---
 dockerfiles/Dockerfile-fedora | 4 ++--
 dockerfiles/Dockerfile-ubuntu | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dockerfiles/Dockerfile-fedora b/dockerfiles/Dockerfile-fedora
index 5330e24..fcb702f 100644
--- a/dockerfiles/Dockerfile-fedora
+++ b/dockerfiles/Dockerfile-fedora
@@ -34,8 +34,8 @@ RUN dnf -y install gcc gcc-c++ cmake openssl-devel 
cyrus-sasl-devel cyrus-sasl-p
 
 RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
 RUN python3 get-pip.py
-RUN pip3 install --user quart
-RUN pip3 install --user selectors
+RUN pip3 install quart
+RUN pip3 install selectors
 
 # Create a main directory and clone the qpid-proton repo from github
 RUN mkdir /main && cd /main && git clone 
https://gitbox.apache.org/repos/asf/qpid-proton.git  && cd /main/qpid-proton && 
mkdir /main/qpid-proton/build
diff --git a/dockerfiles/Dockerfile-ubuntu b/dockerfiles/Dockerfile-ubuntu
index ecbcd43..ac8ba19 100644
--- a/dockerfiles/Dockerfile-ubuntu
+++ b/dockerfiles/Dockerfile-ubuntu
@@ -31,8 +31,8 @@ RUN apt-get update && \
 
 RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
 RUN python3 get-pip.py
-RUN pip3 install --user quart
-RUN pip3 install --user selectors
+RUN pip3 install quart
+RUN pip3 install selectors
 
 
 RUN git clone https://gitbox.apache.org/repos/asf/qpid-dispatch.git && cd 
/qpid-dispatch && git submodule add 
https://gitbox.apache.org/repos/asf/qpid-proton.git && git submodule update 
--init


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org

Reply via email to