You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2022/06/07 14:14:21 UTC

[airflow] branch main updated: Update provider templates for new Airflow 2.2+ req (#24291)

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

potiuk 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 6c9a7999ef Update provider templates for new Airflow 2.2+ req (#24291)
6c9a7999ef is described below

commit 6c9a7999ef04ec6805f5dda4977a08ade0fc115c
Author: Josh Fell <48...@users.noreply.github.com>
AuthorDate: Tue Jun 7 10:14:13 2022 -0400

    Update provider templates for new Airflow 2.2+ req (#24291)
    
    I imagine we could update this somewhat programmatically and/or add this update to instructions somewhere. Let me know what you think.
---
 dev/provider_packages/PROVIDER_INDEX_TEMPLATE.rst.jinja2  | 2 +-
 dev/provider_packages/PROVIDER_README_TEMPLATE.rst.jinja2 | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev/provider_packages/PROVIDER_INDEX_TEMPLATE.rst.jinja2 b/dev/provider_packages/PROVIDER_INDEX_TEMPLATE.rst.jinja2
index 745eafffe0..c2af6bc728 100644
--- a/dev/provider_packages/PROVIDER_INDEX_TEMPLATE.rst.jinja2
+++ b/dev/provider_packages/PROVIDER_INDEX_TEMPLATE.rst.jinja2
@@ -47,7 +47,7 @@ are in ``{{FULL_PACKAGE_NAME}}`` python package.
 Installation
 ------------
 
-You can install this package on top of an existing Airflow 2.1+ installation via
+You can install this package on top of an existing Airflow 2.2+ installation via
 ``pip install {{PACKAGE_PIP_NAME}}``
 {%- if PIP_REQUIREMENTS %}
 
diff --git a/dev/provider_packages/PROVIDER_README_TEMPLATE.rst.jinja2 b/dev/provider_packages/PROVIDER_README_TEMPLATE.rst.jinja2
index 2509fd9565..493af5ddb7 100644
--- a/dev/provider_packages/PROVIDER_README_TEMPLATE.rst.jinja2
+++ b/dev/provider_packages/PROVIDER_README_TEMPLATE.rst.jinja2
@@ -44,7 +44,7 @@ in the `documentation <https://airflow.apache.org/docs/{{ PACKAGE_PIP_NAME }}/{{
 Installation
 ------------
 
-You can install this package on top of an existing Airflow 2.1+ installation via
+You can install this package on top of an existing Airflow 2.2+ installation via
 ``pip install {{PACKAGE_PIP_NAME}}``
 
 The package supports the following python versions: {{ ",".join(SUPPORTED_PYTHON_VERSIONS) }}