This is an automated email from the ASF dual-hosted git repository. ash pushed a commit to branch task-sdk-first-code in repository https://gitbox.apache.org/repos/asf/airflow.git
commit de07e164feb050d7e93d5170a4eaeba5f2cddb89 Author: Ash Berlin-Taylor <[email protected]> AuthorDate: Tue Oct 29 20:14:54 2024 +0000 Install task-sdk when downgrading deps --- Dockerfile.ci | 2 +- scripts/docker/entrypoint_ci.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.ci b/Dockerfile.ci index 114f1273901..94d61507ed4 100644 --- a/Dockerfile.ci +++ b/Dockerfile.ci @@ -1154,7 +1154,7 @@ function check_force_lowest_dependencies() { echo fi set -x - uv pip install --python "$(which python)" --resolution lowest-direct --upgrade --editable ".${EXTRA}" + uv pip install --python "$(which python)" --resolution lowest-direct --upgrade --editable ".${EXTRA}" --editable "./task_sdk" set +x } diff --git a/scripts/docker/entrypoint_ci.sh b/scripts/docker/entrypoint_ci.sh index a96e58b9c21..cbd7bdce141 100755 --- a/scripts/docker/entrypoint_ci.sh +++ b/scripts/docker/entrypoint_ci.sh @@ -377,7 +377,7 @@ function check_force_lowest_dependencies() { echo fi set -x - uv pip install --python "$(which python)" --resolution lowest-direct --upgrade --editable ".${EXTRA}" + uv pip install --python "$(which python)" --resolution lowest-direct --upgrade --editable ".${EXTRA}" --editable "./task_sdk" set +x }
