You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by pi...@apache.org on 2023/03/06 21:47:10 UTC

[airflow] 26/37: Bump epoch on python dependencies in Airlfow Image (#28960)

This is an automated email from the ASF dual-hosted git repository.

pierrejeambrun pushed a commit to branch v2-5-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit c487daf254739d6d4d9881f7907110268728a80f
Author: Jarek Potiuk <ja...@potiuk.com>
AuthorDate: Mon Jan 16 11:43:20 2023 +0100

    Bump epoch on python dependencies in Airlfow Image (#28960)
    
    Recently some packages were removed from Airflow but they are still
    available in cached image in Github and on clean install of the
    image it causes conflicting dependencies when `pip check` is run.
    
    This change will invalidate cache and reinstall base dependencies
    from the scratch - thus removing some dependencies.
    
    (cherry picked from commit fe46a934fc298ec3ac74e6c40ca7e1872d2482f9)
---
 Dockerfile.ci | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Dockerfile.ci b/Dockerfile.ci
index cc28c355d9..f3d9bff8aa 100644
--- a/Dockerfile.ci
+++ b/Dockerfile.ci
@@ -1112,7 +1112,7 @@ ARG AIRFLOW_CONSTRAINTS_LOCATION=""
 ARG DEFAULT_CONSTRAINTS_BRANCH="constraints-main"
 # By changing the epoch we can force reinstalling Airflow and pip all dependencies
 # It can also be overwritten manually by setting the AIRFLOW_CI_BUILD_EPOCH environment variable.
-ARG AIRFLOW_CI_BUILD_EPOCH="3"
+ARG AIRFLOW_CI_BUILD_EPOCH="4"
 ARG AIRFLOW_PRE_CACHED_PIP_PACKAGES="true"
 # By default in the image, we are installing all providers when installing from sources
 ARG INSTALL_PROVIDERS_FROM_SOURCES="true"