Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin pip to 20.0.2 which is the same version used in StackStorm/st2 repo (support for manylinux2014 wheel format) #103

Merged
merged 1 commit into from
Mar 4, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packagingbuild/bionic/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ RUN apt-get update && \
devscripts debhelper dh-make libldap2-dev libsasl2-dev && apt-get clean

# Install fresh pip and co
RUN curl https://bootstrap.pypa.io/get-pip.py | python3 - virtualenv==16.6.0 pip==19.1.1 wheel setuptools cryptography; \
RUN curl https://bootstrap.pypa.io/get-pip.py | python3 - virtualenv==16.6.0 pip==20.0.2 wheel setuptools cryptography; \
pip3 install --upgrade requests[security] && rm -rf /root/.cache

# We use our dh-virtualenv version, since it fixes shebangd lines rewrites
Expand Down
2 changes: 1 addition & 1 deletion packagingbuild/centos7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ RUN yum -y install nc net-tools
RUN yum -y install rpmdevtools epel-release
# Install python3
RUN yum -y install python3 python3-devel python3-virtualenv && \
pip3 install virtualenv==16.6.0 pip==19.1.1 wheel setuptools
pip3 install virtualenv==16.6.0 pip==20.0.2 wheel setuptools
RUN pip3 install --upgrade requests[security] venvctrl && rm -rf /root/.cache

VOLUME ["/home/busybee/build"]
Expand Down
2 changes: 1 addition & 1 deletion packagingbuild/centos8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ RUN yum -y install nc net-tools

# Install development tools and python3 for EL8
RUN yum -y install python3 python3-devel rpmdevtools python3-virtualenv && \
pip3 install virtualenv==16.6.0 pip==19.1.1 wheel setuptools
pip3 install virtualenv==16.6.0 pip==20.0.2 wheel setuptools

RUN pip3 install requests[security] venvctrl --upgrade && rm -rf /root/.cache

Expand Down
2 changes: 1 addition & 1 deletion packagingbuild/xenial/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ RUN apt-get update && \
devscripts debhelper dh-make libldap2-dev libsasl2-dev && apt-get clean

# Install fresh pip and co
RUN curl https://bootstrap.pypa.io/get-pip.py | python3.6 - virtualenv==16.6.0 pip==19.1.1 wheel setuptools; \
RUN curl https://bootstrap.pypa.io/get-pip.py | python3.6 - virtualenv==16.6.0 pip==20.0.2 wheel setuptools; \
pip3.6 install --upgrade requests[security] && rm -rf /root/.cache

# We use our dh-virtualenv version, since it fixes shebangd lines rewrites
Expand Down