From af66f93a782f4c824f0cef4fb85feb98c16c4e4f Mon Sep 17 00:00:00 2001 From: Kaxil Naik Date: Fri, 29 Oct 2021 18:47:40 +0100 Subject: [PATCH] Switch default Python version to 3.7 Continuation of https://github.com/apache/airflow/pull/18922 This case was missed and is needed to have correct image tagged for Dockerfiles --- scripts/ci/libraries/_initialization.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci/libraries/_initialization.sh b/scripts/ci/libraries/_initialization.sh index 4b3eadc30f3e5..6d4842a6ae646 100644 --- a/scripts/ci/libraries/_initialization.sh +++ b/scripts/ci/libraries/_initialization.sh @@ -652,7 +652,7 @@ function initialization::initialize_common_environment() { function initialization::set_default_python_version_if_empty() { # default version of python used to tag the "main" and "latest" images in DockerHub - export DEFAULT_PYTHON_MAJOR_MINOR_VERSION=3.6 + export DEFAULT_PYTHON_MAJOR_MINOR_VERSION=3.7 # default python Major/Minor version export PYTHON_MAJOR_MINOR_VERSION=${PYTHON_MAJOR_MINOR_VERSION:=${DEFAULT_PYTHON_MAJOR_MINOR_VERSION}}