@@ -990,11 +990,8 @@ function install_airflow_when_building_images() {
990990 echo
991991 echo "${COLOR_BLUE}Running 'pip check'${COLOR_RESET}"
992992 echo
993- # Here we should use `pip check` not `uv pip check` to detect any incompatibilities that might happen
994- # between `pip` and `uv` installations
995- # However, in the current version of `pip` there is a bug that incorrectly detects `pagefind-bin` as unsupported
996- # https://github.com/pypa/pip/issues/13709 -> once this is fixed, we should bring `pip check` back.
997- uv pip check
993+ # We use pip check here to make sure that whatever `uv` installs, is also "correct" according to `pip`
994+ pip check
998995}
999996
1000997common::get_colors
@@ -1029,11 +1026,8 @@ function install_additional_dependencies() {
10291026 echo
10301027 echo "${COLOR_BLUE}Running 'pip check'${COLOR_RESET}"
10311028 echo
1032- # Here we should use `pip check` not `uv pip check` to detect any incompatibilities that might happen
1033- # between `pip` and `uv` installations
1034- # However, in the current version of `pip` there is a bug that incorrectly detects `pagefind-bin` as unsupported
1035- # https://github.com/pypa/pip/issues/13709 -> once this is fixed, we should bring `pip check` back.
1036- uv pip check
1029+ # We use pip check here to make sure that whatever `uv` installs, is also "correct" according to `pip`
1030+ pip check
10371031 else
10381032 echo
10391033 echo "${COLOR_BLUE}Installing additional dependencies upgrading only if needed${COLOR_RESET}"
@@ -1047,11 +1041,8 @@ function install_additional_dependencies() {
10471041 echo
10481042 echo "${COLOR_BLUE}Running 'pip check'${COLOR_RESET}"
10491043 echo
1050- # Here we should use `pip check` not `uv pip check` to detect any incompatibilities that might happen
1051- # between `pip` and `uv` installations
1052- # However, in the current version of `pip` there is a bug that incorrectly detects `pagefind-bin` as unsupported
1053- # https://github.com/pypa/pip/issues/13709 -> once this is fixed, we should bring `pip check` back.
1054- uv pip check
1044+ # We use pip check here to make sure that whatever `uv` installs, is also "correct" according to `pip`
1045+ pip check
10551046 fi
10561047}
10571048
@@ -1370,11 +1361,8 @@ function check_downgrade_sqlalchemy() {
13701361 echo
13711362 echo "${COLOR_BLUE}Running 'pip check'${COLOR_RESET}"
13721363 echo
1373- # Here we should use `pip check` not `uv pip check` to detect any incompatibilities that might happen
1374- # between `pip` and `uv` installations
1375- # However, in the current version of `pip` there is a bug that incorrectly detects `pagefind-bin` as unsupported
1376- # https://github.com/pypa/pip/issues/13709 -> once this is fixed, we should bring `pip check` back.
1377- uv pip check
1364+ # We use pip check here to make sure that whatever `uv` installs, is also "correct" according to `pip`
1365+ pip check
13781366}
13791367
13801368function check_downgrade_pendulum() {
@@ -1391,11 +1379,8 @@ function check_downgrade_pendulum() {
13911379 echo
13921380 echo "${COLOR_BLUE}Running 'pip check'${COLOR_RESET}"
13931381 echo
1394- # Here we should use `pip check` not `uv pip check` to detect any incompatibilities that might happen
1395- # between `pip` and `uv` installations
1396- # However, in the current version of `pip` there is a bug that incorrectly detects `pagefind-bin` as unsupported
1397- # https://github.com/pypa/pip/issues/13709 -> once this is fixed, we should bring `pip check` back.
1398- uv pip check
1382+ # We use pip check here to make sure that whatever `uv` installs, is also "correct" according to `pip`
1383+ pip check
13991384}
14001385
14011386function check_run_tests() {
0 commit comments