potiuk commented on code in PR #59658:
URL: https://github.com/apache/airflow/pull/59658#discussion_r2637052815
##########
Dockerfile.ci:
##########
@@ -988,9 +988,9 @@ function install_airflow_when_building_images() {
set +x
common::install_packaging_tools
echo
- echo "${COLOR_BLUE}Running 'pip check'${COLOR_RESET}"
+ echo "${COLOR_BLUE}Running 'uv pip check'${COLOR_RESET}"
echo
- pip check
+ uv pip check
Review Comment:
```suggestion
# Here we should use `pip check` not `uv pip check` to detect any
incompatibilties that might happen
# Between `pip` and `uv` installations
# Hower in the current version of `pip` there is a bug that uncorrectly
detects pagefind-bin as unsupported
# https://github.com/pypa/pip/issues/13709 -> once this is fixed, we
should bring `pip check` back.
uv pip check
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]