This is an automated email from the ASF dual-hosted git repository.
husseinawala pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 9b96f76ac8 Fix: Add 3.11 as supported Python version (#34575)
9b96f76ac8 is described below
commit 9b96f76ac820b3dc020286b685a236da842e407c
Author: Jan Frederik Léger <[email protected]>
AuthorDate: Sun Sep 24 21:26:57 2023 +0200
Fix: Add 3.11 as supported Python version (#34575)
* Fix: Add 3.11 as supported Python version
On the Quick Start page
Fixes #34574
* Update docs/apache-airflow/start.rst
---------
Co-authored-by: Hussein Awala <[email protected]>
---
docs/apache-airflow/start.rst | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/docs/apache-airflow/start.rst b/docs/apache-airflow/start.rst
index 5ed97ae4d7..ee95f1391d 100644
--- a/docs/apache-airflow/start.rst
+++ b/docs/apache-airflow/start.rst
@@ -24,8 +24,7 @@ This quick start guide will help you bootstrap an Airflow
standalone instance on
.. note::
- Successful installation requires a Python 3 environment. Starting with
Airflow 2.3.0, Airflow is tested with Python 3.8, 3.9, 3.10.
- Note that Python 3.11 is not yet supported.
+ Successful installation requires a Python 3 environment. Starting with
Airflow 2.7.0, Airflow supports Python 3.8, 3.9, 3.10 and 3.11.
Only ``pip`` installation is currently officially supported.
@@ -61,7 +60,8 @@ constraint files to enable reproducible installation, so
using ``pip`` and const
AIRFLOW_VERSION=|version|
- # Extract the version of Python you have installed. If you're currently
using Python 3.11 you may want to set this manually as noted above, Python 3.11
is not yet supported.
+ # Extract the version of Python you have installed. If you're currently
using a Python version that is not supported by Airflow, you may want to set
this manually.
+ # See above for supported versions.
PYTHON_VERSION="$(python --version | cut -d " " -f 2 | cut -d "." -f
1-2)"
CONSTRAINT_URL="https://raw.githubusercontent.com/apache/airflow/constraints-${AIRFLOW_VERSION}/constraints-${PYTHON_VERSION}.txt"