We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02559bb commit f67f126Copy full SHA for f67f126
ci/env/install-dependencies.sh
@@ -133,7 +133,9 @@ install_upgrade_pip() {
133
fi
134
135
if "${python}" -m pip --version || "${python}" -m ensurepip; then # Configure pip if present
136
- "${python}" -m pip install --upgrade pip
+ # 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
139
140
# If we're in a CI environment, do some configuration
141
if [[ "${CI-}" == "true" ]]; then
0 commit comments