Skip to content

Commit f67f126

Browse files
authored
[ci] pin pip version in min setup (#58215)
fixes min setup build Signed-off-by: Lonnie Liu <lonnie@anyscale.com>
1 parent 02559bb commit f67f126

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ci/env/install-dependencies.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,9 @@ install_upgrade_pip() {
133133
fi
134134

135135
if "${python}" -m pip --version || "${python}" -m ensurepip; then # Configure pip if present
136-
"${python}" -m pip install --upgrade pip
136+
# 25.3 has breaking change where other Python packages like "click" does not work
137+
# with it anymore. pip-compile will fail to work with the package's setup code.
138+
"${python}" -m pip install pip==25.2
137139

138140
# If we're in a CI environment, do some configuration
139141
if [[ "${CI-}" == "true" ]]; then

0 commit comments

Comments
 (0)