You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by gm...@apache.org on 2020/12/16 18:49:19 UTC

[qpid-dispatch] branch master updated: 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 warn [...]

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 <gm...@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-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org