This is an automated email from the ASF dual-hosted git repository. ephraimanierobi pushed a commit to branch v2-7-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit c86ebeb897c48338fc0f9410bce7393eebb1050e Author: Hussein Awala <[email protected]> AuthorDate: Mon Oct 2 11:21:55 2023 +0200 Fix broken breeze by fixing package version (#34701) (cherry picked from commit 6618c5f90d037d57e9f3bf1e90cd0712426d6caa) --- Dockerfile.ci | 2 +- dev/breeze/README.md | 2 +- dev/breeze/setup.cfg | 2 +- scripts/ci/install_breeze.sh | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile.ci b/Dockerfile.ci index a0f47d86d3..aba7e6913b 100644 --- a/Dockerfile.ci +++ b/Dockerfile.ci @@ -1242,7 +1242,7 @@ ARG PYTHON_BASE_IMAGE ARG AIRFLOW_IMAGE_REPOSITORY="https://github.com/apache/airflow" # By increasing this number we can do force build of all dependencies -ARG DEPENDENCIES_EPOCH_NUMBER="9" +ARG DEPENDENCIES_EPOCH_NUMBER="10" # Make sure noninteractive debian install is used and language variables set ENV PYTHON_BASE_IMAGE=${PYTHON_BASE_IMAGE} \ diff --git a/dev/breeze/README.md b/dev/breeze/README.md index 7751502524..12278aaf9a 100644 --- a/dev/breeze/README.md +++ b/dev/breeze/README.md @@ -52,6 +52,6 @@ PLEASE DO NOT MODIFY THE HASH BELOW! IT IS AUTOMATICALLY UPDATED BY PRE-COMMIT. --------------------------------------------------------------------------------------------------------- -Package config hash: 9d095d522c9f6fcf0c5834fcdc050bc98231d17fad07ec054c4e437580129d547b693b66b61442757f81fc1a505483da5267cc973dbf86babba7cd2c11697708 +Package config hash: 782a39916ea95eedd0cd81f76c9dbf3bbb5cbdc5c03271621a8dd3805324ee6868fbead2b95ac653d9efea0225db85de46b17c6f0e3b07923c7d18de666d236e --------------------------------------------------------------------------------------------------------- diff --git a/dev/breeze/setup.cfg b/dev/breeze/setup.cfg index 735962b801..95b8df62e3 100644 --- a/dev/breeze/setup.cfg +++ b/dev/breeze/setup.cfg @@ -56,7 +56,7 @@ install_requires = filelock inputimeout jinja2 - packaging + packaging==23.1 pendulum pre-commit psutil diff --git a/scripts/ci/install_breeze.sh b/scripts/ci/install_breeze.sh index e73f6c28b6..7a0e7a927b 100755 --- a/scripts/ci/install_breeze.sh +++ b/scripts/ci/install_breeze.sh @@ -19,6 +19,6 @@ set -euxo pipefail cd "$( dirname "${BASH_SOURCE[0]}" )/../../" -python -m pip install pipx +python -m pip install pipx packaging==23.1 python -m pipx install --editable ./dev/breeze/ --force echo '/home/runner/.local/bin' >> "${GITHUB_PATH}"
