File tree Expand file tree Collapse file tree 7 files changed +7
-7
lines changed
.github/actions/install-pre-commit Expand file tree Collapse file tree 7 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ inputs:
2424 default : " 3.9"
2525 uv-version :
2626 description : ' uv version to use'
27- default : " 0.7.3 " # Keep this comment to allow automatic replacement of uv version
27+ default : " 0.7.16 " # Keep this comment to allow automatic replacement of uv version
2828 pre-commit-version :
2929 description : ' pre-commit version to use'
3030 default : " 3.5.0" # Keep this comment to allow automatic replacement of pre-commit version
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ ARG PYTHON_BASE_IMAGE="python:3.9-slim-bookworm"
5555# Also use `force pip` label on your PR to swap all places we use `uv` to `pip`
5656ARG AIRFLOW_PIP_VERSION=25.1.1
5757# ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main"
58- ARG AIRFLOW_UV_VERSION=0.7.3
58+ ARG AIRFLOW_UV_VERSION=0.7.16
5959ARG AIRFLOW_USE_UV="false"
6060ARG UV_HTTP_TIMEOUT="300"
6161ARG AIRFLOW_IMAGE_REPOSITORY="https://github.com/apache/airflow"
Original file line number Diff line number Diff line change @@ -1251,7 +1251,7 @@ COPY --from=scripts common.sh install_packaging_tools.sh install_additional_depe
12511251# Also use `force pip` label on your PR to swap all places we use `uv` to `pip`
12521252ARG AIRFLOW_PIP_VERSION=25.1.1
12531253# ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main"
1254- ARG AIRFLOW_UV_VERSION=0.7.3
1254+ ARG AIRFLOW_UV_VERSION=0.7.16
12551255# TODO(potiuk): automate with upgrade check (possibly)
12561256ARG AIRFLOW_PRE_COMMIT_VERSION="3.5.0"
12571257
Original file line number Diff line number Diff line change @@ -443,7 +443,7 @@ can be used for CI images:
443443| ` ADDITIONAL_DEV_APT_DEPS ` | | Additional apt dev dependencies installed in the first part of the image |
444444| ` ADDITIONAL_DEV_APT_ENV ` | | Additional env variables defined when installing dev deps |
445445| ` AIRFLOW_PIP_VERSION ` | ` 25.1.1 ` | ` pip ` version used. |
446- | ` AIRFLOW_UV_VERSION ` | ` 0.7.3 ` | ` uv ` version used. |
446+ | ` AIRFLOW_UV_VERSION ` | ` 0.7.16 ` | ` uv ` version used. |
447447| ` AIRFLOW_PRE_COMMIT_VERSION ` | ` 3.5.0 ` | ` pre-commit ` version used. |
448448| ` AIRFLOW_USE_UV ` | ` true ` | Whether to use UV for installation. |
449449| ` PIP_PROGRESS_BAR ` | ` on ` | Progress bar for PIP installation |
Original file line number Diff line number Diff line change @@ -234,7 +234,7 @@ class VersionedFile(NamedTuple):
234234
235235
236236AIRFLOW_PIP_VERSION = "25.1.1"
237- AIRFLOW_UV_VERSION = "0.7.3 "
237+ AIRFLOW_UV_VERSION = "0.7.16 "
238238AIRFLOW_USE_UV = False
239239# TODO: automate these as well
240240WHEEL_VERSION = "0.44.0"
Original file line number Diff line number Diff line change 187187ALLOWED_INSTALL_MYSQL_CLIENT_TYPES = ["mariadb" , "mysql" ]
188188
189189PIP_VERSION = "25.1.1"
190- UV_VERSION = "0.7.3 "
190+ UV_VERSION = "0.7.16 "
191191
192192DEFAULT_UV_HTTP_TIMEOUT = 300
193193DEFAULT_WSL2_HTTP_TIMEOUT = 900
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ cd "$( dirname "${BASH_SOURCE[0]}" )/../../"
2222PYTHON_ARG=" "
2323
2424PIP_VERSION=" 25.1.1"
25- UV_VERSION=" 0.7.3 "
25+ UV_VERSION=" 0.7.16 "
2626if [[ ${PYTHON_VERSION=} != " " ]]; then
2727 PYTHON_ARG=" --python=$( which python" ${PYTHON_VERSION} " ) "
2828fi
You can’t perform that action at this time.
0 commit comments