File tree Expand file tree Collapse file tree 9 files changed +17
-17
lines changed
.github/actions/install-pre-commit Expand file tree Collapse file tree 9 files changed +17
-17
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ inputs:
24
24
default : " 3.9"
25
25
uv-version :
26
26
description : ' uv version to use'
27
- default : " 0.6.17 " # Keep this comment to allow automatic replacement of uv version
27
+ default : " 0.7.2 " # Keep this comment to allow automatic replacement of uv version
28
28
pre-commit-version :
29
29
description : ' pre-commit version to use'
30
30
default : " 4.2.0" # Keep this comment to allow automatic replacement of pre-commit version
Original file line number Diff line number Diff line change @@ -54,10 +54,10 @@ ARG PYTHON_BASE_IMAGE="python:3.9-slim-bookworm"
54
54
# You can swap comments between those two args to test pip from the main version
55
55
# When you attempt to test if the version of `pip` from specified branch works for our builds
56
56
# Also use `force pip` label on your PR to swap all places we use `uv` to `pip`
57
- ARG AIRFLOW_PIP_VERSION=25.1
57
+ ARG AIRFLOW_PIP_VERSION=25.1.1
58
58
# ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main"
59
- ARG AIRFLOW_SETUPTOOLS_VERSION=79.0.1
60
- ARG AIRFLOW_UV_VERSION=0.6.17
59
+ ARG AIRFLOW_SETUPTOOLS_VERSION=80.1.0
60
+ ARG AIRFLOW_UV_VERSION=0.7.2
61
61
ARG AIRFLOW_USE_UV="false"
62
62
ARG UV_HTTP_TIMEOUT="300"
63
63
ARG AIRFLOW_IMAGE_REPOSITORY="https://github.com/apache/airflow"
Original file line number Diff line number Diff line change @@ -1359,10 +1359,10 @@ COPY --from=scripts common.sh install_packaging_tools.sh install_additional_depe
1359
1359
# You can swap comments between those two args to test pip from the main version
1360
1360
# When you attempt to test if the version of `pip` from specified branch works for our builds
1361
1361
# Also use `force pip` label on your PR to swap all places we use `uv` to `pip`
1362
- ARG AIRFLOW_PIP_VERSION=25.1
1362
+ ARG AIRFLOW_PIP_VERSION=25.1.1
1363
1363
# ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main"
1364
- ARG AIRFLOW_SETUPTOOLS_VERSION=79.0.1
1365
- ARG AIRFLOW_UV_VERSION=0.6.17
1364
+ ARG AIRFLOW_SETUPTOOLS_VERSION=80.1.0
1365
+ ARG AIRFLOW_UV_VERSION=0.7.2
1366
1366
# TODO(potiuk): automate with upgrade check (possibly)
1367
1367
ARG AIRFLOW_PRE_COMMIT_VERSION="4.2.0"
1368
1368
ARG AIRFLOW_PRE_COMMIT_UV_VERSION="4.1.4"
Original file line number Diff line number Diff line change @@ -442,8 +442,8 @@ can be used for CI images:
442
442
| ` DEV_APT_DEPS ` | | Dev APT dependencies installed in the first part of the image (default empty means default dependencies are used) |
443
443
| ` ADDITIONAL_DEV_APT_DEPS ` | | Additional apt dev dependencies installed in the first part of the image |
444
444
| ` ADDITIONAL_DEV_APT_ENV ` | | Additional env variables defined when installing dev deps |
445
- | ` AIRFLOW_PIP_VERSION ` | ` 25.1 ` | ` pip ` version used. |
446
- | ` AIRFLOW_UV_VERSION ` | ` 0.6.17 ` | ` uv ` version used. |
445
+ | ` AIRFLOW_PIP_VERSION ` | ` 25.1.1 ` | ` pip ` version used. |
446
+ | ` AIRFLOW_UV_VERSION ` | ` 0.7.2 ` | ` uv ` version used. |
447
447
| ` AIRFLOW_PRE_COMMIT_VERSION ` | ` 4.2.0 ` | ` pre-commit ` version used. |
448
448
| ` AIRFLOW_PRE_COMMIT_UV_VERSION ` | ` 4.1.4 ` | ` pre-commit-uv ` version used. |
449
449
| ` AIRFLOW_USE_UV ` | ` true ` | Whether to use UV for installation. |
Original file line number Diff line number Diff line change @@ -235,8 +235,8 @@ class VersionedFile(NamedTuple):
235
235
file_name : str
236
236
237
237
238
- AIRFLOW_PIP_VERSION = "25.1"
239
- AIRFLOW_UV_VERSION = "0.6.17 "
238
+ AIRFLOW_PIP_VERSION = "25.1.1 "
239
+ AIRFLOW_UV_VERSION = "0.7.2 "
240
240
AIRFLOW_USE_UV = False
241
241
# TODO(potiuk): automate upgrades of these versions (likely via requirements.txt file)
242
242
GITPYTHON_VERSION = "3.1.44"
Original file line number Diff line number Diff line change 198
198
199
199
ALLOWED_INSTALL_MYSQL_CLIENT_TYPES = ["mariadb" , "mysql" ]
200
200
201
- PIP_VERSION = "25.1"
202
- UV_VERSION = "0.6.17 "
201
+ PIP_VERSION = "25.1.1 "
202
+ UV_VERSION = "0.7.2 "
203
203
204
204
DEFAULT_UV_HTTP_TIMEOUT = 300
205
205
DEFAULT_WSL2_HTTP_TIMEOUT = 900
Original file line number Diff line number Diff line change @@ -518,7 +518,7 @@ packages = []
518
518
" apache-airflow-providers-amazon[s3fs]" ,
519
519
]
520
520
"uv" = [
521
- " uv>=0.6.17 " ,
521
+ " uv>=0.7.2 " ,
522
522
]
523
523
524
524
Original file line number Diff line number Diff line change @@ -21,8 +21,8 @@ cd "$( dirname "${BASH_SOURCE[0]}" )/../../"
21
21
22
22
PYTHON_ARG=" "
23
23
24
- PIP_VERSION=" 25.1"
25
- UV_VERSION=" 0.6.17 "
24
+ PIP_VERSION=" 25.1.1 "
25
+ UV_VERSION=" 0.7.2 "
26
26
if [[ ${PYTHON_VERSION=} != " " ]]; then
27
27
PYTHON_ARG=" --python=$( which python" ${PYTHON_VERSION} " ) "
28
28
fi
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ COLOR_YELLOW=$'\e[33m'
27
27
COLOR_BLUE=$' \e [34m'
28
28
COLOR_RESET=$' \e [0m'
29
29
30
- UV_VERSION=" 0.6.17 "
30
+ UV_VERSION=" 0.7.2 "
31
31
32
32
function manual_instructions() {
33
33
echo
You can’t perform that action at this time.
0 commit comments