This is an automated email from the ASF dual-hosted git repository.
jedcunningham 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 89dc1cd17d Remove note about triggerer being 3.7+ only (#31483)
89dc1cd17d is described below
commit 89dc1cd17d3aaca88da2be00542b946345685b3e
Author: Jed Cunningham <[email protected]>
AuthorDate: Tue May 23 17:58:41 2023 -0500
Remove note about triggerer being 3.7+ only (#31483)
3.7 is now the lowest Python version Airflow supports, so no need to
explicitly call out that the triggerer requires 3.7+.
---
docs/apache-airflow/authoring-and-scheduling/deferring.rst | 5 -----
1 file changed, 5 deletions(-)
diff --git a/docs/apache-airflow/authoring-and-scheduling/deferring.rst
b/docs/apache-airflow/authoring-and-scheduling/deferring.rst
index b16fbdde1d..a20e3dafe6 100644
--- a/docs/apache-airflow/authoring-and-scheduling/deferring.rst
+++ b/docs/apache-airflow/authoring-and-scheduling/deferring.rst
@@ -31,11 +31,6 @@ This is where *Deferrable Operators* come in. A deferrable
operator is one that
Using deferrable operators as a DAG author is almost transparent; writing
them, however, takes a bit more work.
-.. note::
-
- Deferrable Operators & Triggers rely on more recent ``asyncio`` features,
and as a result only work
- on Python 3.7 or higher.
-
Using Deferrable Operators
--------------------------