From aaf92a9ae8a6e8cfa318803114c70a26f60f6a4f Mon Sep 17 00:00:00 2001 From: Pere Miquel Brull Date: Mon, 8 May 2023 09:59:57 +0200 Subject: [PATCH] Bump python-daemon (#11477) --- ingestion/Dockerfile | 2 ++ ingestion/Dockerfile.ci | 3 +++ 2 files changed, 5 insertions(+) diff --git a/ingestion/Dockerfile b/ingestion/Dockerfile index 55e22d34aba8..0a0d2246e08b 100644 --- a/ingestion/Dockerfile +++ b/ingestion/Dockerfile @@ -75,6 +75,8 @@ ARG INGESTION_DEPENDENCY="all" RUN pip install --upgrade pip RUN pip install "openmetadata-managed-apis==1.0.0.0.dev0" --constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.3.3/constraints-3.9.txt" RUN pip install "openmetadata-ingestion[${INGESTION_DEPENDENCY}]==1.0.0.0.dev0" +# bump python-daemon for https://github.com/apache/airflow/pull/29916 +RUN pip install "python-daemon>=3.0.0" # remove all airflow providers except for docker RUN pip freeze | grep "apache-airflow-providers" | grep -v "docker\|http" | xargs pip uninstall -y # Uninstalling psycopg2-binary and installing psycopg2 instead diff --git a/ingestion/Dockerfile.ci b/ingestion/Dockerfile.ci index 3fa76a85d14c..ef64577654a6 100644 --- a/ingestion/Dockerfile.ci +++ b/ingestion/Dockerfile.ci @@ -83,6 +83,9 @@ WORKDIR /home/airflow/ingestion ARG INGESTION_DEPENDENCY="all" RUN pip install ".[${INGESTION_DEPENDENCY}]" +# bump python-daemon for https://github.com/apache/airflow/pull/29916 +RUN pip install "python-daemon>=3.0.0" + # remove all airflow providers except for docker RUN pip freeze | grep "apache-airflow-providers" | grep -v "docker\|http" | xargs pip uninstall -y