Skip to content

Commit

Permalink
Merge pull request #569 from elfosardo/update-setuptools
Browse files Browse the repository at this point in the history
🐛 Pin setuptools and pin upper-constraints
  • Loading branch information
metal3-io-bot authored Sep 27, 2024
2 parents b2f3765 + 54d741a commit a59ce7a
Show file tree
Hide file tree
Showing 2 changed files with 605 additions and 1 deletion.
6 changes: 5 additions & 1 deletion prepare-image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,11 @@ 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
# NOTE(elfosardo): pinning pip and setuptools version to avoid
# incompatibilities and errors during packages installation;
# versions should be updated regularly, for example
# after cutting a release branch.
python3 -m pip install pip==21.3.1 setuptools==74.1.2

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

Expand Down
Loading

0 comments on commit a59ce7a

Please sign in to comment.