You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by as...@apache.org on 2020/12/12 09:27:23 UTC

[airflow] branch master updated: Added information about currently supported Python versions (#13029)

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

ash pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/master by this push:
     new b6678fa  Added information about currently supported Python versions (#13029)
b6678fa is described below

commit b6678fa328b903b46fc694feb842e1172a8c6ee8
Author: Vikram Koka <vi...@astronomer.io>
AuthorDate: Sat Dec 12 01:26:24 2020 -0800

    Added information about currently supported Python versions (#13029)
    
    Added information to the Upgrading to 2.0 doc and the installation doc
    to show the currently supported Python versions.
---
 docs/apache-airflow/installation.rst   | 3 +++
 docs/apache-airflow/upgrading-to-2.rst | 4 +++-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/docs/apache-airflow/installation.rst b/docs/apache-airflow/installation.rst
index 41b4cfb..2a7dc92 100644
--- a/docs/apache-airflow/installation.rst
+++ b/docs/apache-airflow/installation.rst
@@ -68,6 +68,9 @@ and python versions in the URL.
     # For example: https://raw.githubusercontent.com/apache/airflow/constraints-1.10.14/constraints-3.6.txt
     pip install "apache-airflow==${AIRFLOW_VERSION}" --constraint "${CONSTRAINT_URL}"
 
+    Please note that with respect to Python 3 support, Airflow 1.10.14 has been
+    tested with Python 3.6, 3.7, and 3.8, but does not yet support Python 3.9.
+
 2. Installing with extras (for example postgres, google)
 
 .. note::
diff --git a/docs/apache-airflow/upgrading-to-2.rst b/docs/apache-airflow/upgrading-to-2.rst
index 27a731e..2bc2426 100644
--- a/docs/apache-airflow/upgrading-to-2.rst
+++ b/docs/apache-airflow/upgrading-to-2.rst
@@ -27,7 +27,9 @@ users to migrate from Airflow 1.10.x to Airflow 2.0.
 Step 1: Upgrade to Python 3
 '''''''''''''''''''''''''''
 
-Airflow 1.10 will be the last release series to support Python 2. Airflow 2.0.0 will require Python 3.6+.
+Airflow 1.10 will be the last release series to support Python 2. Airflow 2.0.0 will
+require Python 3.6+ and at this point in time has been tested with Python versions 3.6, 3.7,
+and 3.8, but does not yet support Python 3.9.
 
 If you have a specific task that still requires Python 2 then you can use the :class:`~airflow.operators.python.PythonVirtualenvOperator` or the ``KubernetesPodOperator`` for this.