Skip to content

Commit

Permalink
chore(deps): update dependency pip to v24.3.1 (#565)
Browse files Browse the repository at this point in the history
Signed-off-by: Renovate Bot <[email protected]>
  • Loading branch information
renovate[bot] authored Oct 28, 2024
1 parent 3ca3ad4 commit 724ce7c
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions ansible-lint/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN apt-get update \
build-essential \
gcc \
&& mkdir /wheels \
&& python3 -m pip install --no-cache-dir -U 'pip==24.2' \
&& python3 -m pip install --no-cache-dir -U 'pip==24.3.1' \
&& python3 -m pip wheel --no-cache-dir --wheel-dir=/wheels --pre -r /requirements.txt

FROM python:3.13-slim
Expand All @@ -18,7 +18,7 @@ COPY files/* /
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
git \
&& python3 -m pip install --no-cache-dir -U 'pip==24.2' \
&& python3 -m pip install --no-cache-dir -U 'pip==24.3.1' \
&& python3 -m pip install --no-cache-dir --no-index --find-links=/wheels --pre -r /requirements.txt \
&& ansible-galaxy collection install -r /requirements.yml \
&& ansible-galaxy role install -r /requirements.yml \
Expand Down
4 changes: 2 additions & 2 deletions ara-server/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN apt-get update \
libyaml-dev \
pkg-config \
&& mkdir /wheels \
&& python3 -m pip install --no-cache-dir -U 'pip==24.2' \
&& python3 -m pip install --no-cache-dir -U 'pip==24.3.1' \
&& python3 -m pip wheel --no-cache-dir --wheel-dir=/wheels --pre -r /requirements.txt \
&& python3 -m pip wheel --no-cache-dir --wheel-dir=/wheels "ara[server]"

Expand All @@ -31,7 +31,7 @@ RUN apt-get update \
&& apt-get install -y --no-install-recommends \
curl \
libmariadb3 \
&& python3 -m pip install --no-cache-dir -U 'pip==24.2' \
&& python3 -m pip install --no-cache-dir -U 'pip==24.3.1' \
&& python3 -m pip install --no-cache-dir --no-index --find-links=/wheels --pre -r /requirements.txt \
&& python3 -m pip install --no-cache-dir --no-index --find-links=/wheels "ara[server]" \
&& useradd ara-server \
Expand Down
2 changes: 1 addition & 1 deletion netbox/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM quay.io/netboxcommunity/netbox:${VERSION}
COPY requirements.txt /requirements.txt
COPY files/launch.sh /opt/netbox/launch.sh

RUN /opt/netbox/venv/bin/python3 -m pip --no-cache-dir install -U 'pip==24.2' \
RUN /opt/netbox/venv/bin/python3 -m pip --no-cache-dir install -U 'pip==24.3.1' \
&& /opt/netbox/venv/bin/python3 -m pip --no-cache-dir install -r /requirements.txt \
&& chmod +x /opt/netbox/launch.sh

Expand Down
2 changes: 1 addition & 1 deletion openstackclient/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ RUN apk update --no-cache \
done < /requirements.txt \
&& sed -i "/^PyYAML===.*$/d" /requirements/upper-constraints.txt \
&& echo "PyYAML>6.0.0" >> /packages.txt \
&& pip3 --no-cache-dir install --upgrade 'pip==24.2' \
&& pip3 --no-cache-dir install --upgrade 'pip==24.3.1' \
&& pip3 --no-cache-dir install -c /requirements/upper-constraints.txt -r /packages.txt \
&& pip3 --no-cache-dir install 'keystoneauth-websso==0.1.1' \
&& pip3 --no-cache-dir install setuptools \
Expand Down
2 changes: 1 addition & 1 deletion seed/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN apk add --no-cache bash openssh-client sshpass \
openssl-dev \
python3-dev \
rust \
&& pip3 --no-cache-dir install --upgrade 'pip==24.2' \
&& pip3 --no-cache-dir install --upgrade 'pip==24.3.1' \
&& pip3 --no-cache-dir install -r /requirements.txt \
&& ansible-galaxy install -r /requirements.yml \
&& mkdir -p /opt/configuration/environments/manager \
Expand Down
4 changes: 2 additions & 2 deletions tempest/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM python:3.12-slim-bookworm AS pre-gobuild

RUN apt-get update
RUN apt-get install --no-install-recommends -y build-essential
RUN python3 -m pip install --no-cache-dir --upgrade 'pip==24.2'
RUN python3 -m pip install --no-cache-dir --upgrade 'pip==24.3.1'
RUN pip3 install --no-cache-dir octavia-tempest-plugin

FROM golang:bookworm AS gobuild
Expand Down Expand Up @@ -41,7 +41,7 @@ apt-get install --no-install-recommends -y \
build-essential \
iputils-ping \
openssh-client
python3 -m pip install --no-cache-dir --upgrade 'pip==24.2'
python3 -m pip install --no-cache-dir --upgrade 'pip==24.3.1'
pip3 install --no-cache-dir -r /requirements.txt

# add user
Expand Down
2 changes: 1 addition & 1 deletion virtualbmc/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ COPY files/run.sh /run.sh

RUN apt-get update \
&& apt-get install -y --no-install-recommends python3-dev libvirt-dev pkg-config gcc \
&& python3 -m pip --no-cache-dir install -U 'pip==24.2' \
&& python3 -m pip --no-cache-dir install -U 'pip==24.3.1' \
&& python3 -m pip install --no-cache-dir virtualbmc==${VERSION} \
&& apt-get remove -y python3-dev libvirt-dev pkg-config gcc \
&& rm -rf /var/lib/apt/lists
Expand Down

0 comments on commit 724ce7c

Please sign in to comment.