Skip to content

Commit

Permalink
Merge pull request #524 from elfosardo/pip-update
Browse files Browse the repository at this point in the history
🌱 Update pip version
  • Loading branch information
metal3-io-bot authored Jun 25, 2024
2 parents 720a070 + bcb8f0e commit ebb862c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion patch-image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ while IFS= read -r line; do
git checkout FETCH_HEAD

SKIP_GENERATE_AUTHORS=1 SKIP_WRITE_GIT_CHANGELOG=1 python3 setup.py sdist
pip3 install --prefix /usr dist/*.tar.gz
python3 -m pip install --prefix /usr dist/*.tar.gz
done < "$PATCH_FILE"

dnf remove -y python3-pip git-core
Expand Down
2 changes: 1 addition & 1 deletion prepare-image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ if [[ "$INSTALL_TYPE" == "source" ]]; then
# NOTE(dtantsur): pip is a requirement of python3 in CentOS
# shellcheck disable=SC2086
dnf install -y python3-pip $BUILD_DEPS
python3 -m pip install pip==21.3.1
python3 -m pip install pip==24.1

IRONIC_PKG_LIST_FINAL="/tmp/ironic-${INSTALL_TYPE}-list-final"

Expand Down
2 changes: 1 addition & 1 deletion resources/vbmc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get install -y libvirt-dev ssh gcc && \
apt-get clean && \
pip3 install --no-cache-dir \
python3 -m pip install --no-cache-dir \
virtualbmc=="${VIRTUALBMC_VERSION}" && \
apt-get --purge autoremove -y gcc

Expand Down

0 comments on commit ebb862c

Please sign in to comment.