From f1b4215150317dc76e09825a707c3d53e9a517dd Mon Sep 17 00:00:00 2001 From: Jo <46752250+georgesittas@users.noreply.github.com> Date: Thu, 5 Dec 2024 23:39:07 +0200 Subject: [PATCH] Fix: use python 3.9 for airflow dockerfile template (#3476) --- examples/airflow/Dockerfile.template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/airflow/Dockerfile.template b/examples/airflow/Dockerfile.template index 7519b33fb..ec9281ea3 100644 --- a/examples/airflow/Dockerfile.template +++ b/examples/airflow/Dockerfile.template @@ -1,6 +1,6 @@ FROM apache/spark:3.5.0-python3 AS spark -FROM apache/airflow:$AIRFLOW_VERSION-python3.8 +FROM apache/airflow:$AIRFLOW_VERSION-python3.9 USER root @@ -60,7 +60,7 @@ RUN pip install apache-airflow-providers-apache-spark==4.8.0 --no-deps RUN pip install apache-airflow-providers-databricks==6.4.0 \ apache-airflow-providers-github==2.6.0 \ apache-airflow-providers-common-sql==1.13.0 \ - pandas==1.5.2 # python 3.8 spark 3.4 and pandas 2.0 have issues with casting timestamp + pandas==1.5.2 # spark 3.4 and pandas 2.0 have issues with casting timestamp # Install Deps USER root