Skip to content

Commit

Permalink
Bring back min-airflow-version for preinstalled providers (#31469)
Browse files Browse the repository at this point in the history
In the last wave of providers #31416 we bumped min-airlfow-version to 2.4 and
added mechanism to verify min-airflow version is ok while importing, but
it turned out that there are cases where installing just old version of
airflow (with no constraints) brings the latest version of those
providers and causes new installation of airflow to fail. This is far
too common to ignore or require to use constraints, unfortunately  We do
not have min-airlfow-version in the preinstalled providers for one
reason only. For some tools that are NOT conforming to standards (such
as bazel), having min-airflow-version for those providers causes
circular dependency (even though technically dependencies in PyPI can -
and often are - circular, because dependencies in Python are not DAG and
can contain cycles.

This was in response to this issue in 2021 #17795.

However, this is really  bazel issue, and on top of it - it's recognized
as such and being fixed very recently
in bazelbuild/rules_python#1188 because there
are other packages that have similar problems (pytorch and triton being
popular couple). Also Bazel is not that popular in the Python world. 

Therefore, rather than trying to workaround the problem of bazel, we
encourage them to merge and release the fix
bazelbuild/rules_python#1166 (comment)
and call it out in our installation instructions, that bazel
installation might lead to problems like that.

If bazel does not fix it, this will only be a problem for Future
installations of airflow in a few months most likely. It will not impact
current bazel users installing old versions of Airflow (actually they
might start having problems now if we do not fix it and yank the 5
providers released yesterday)
  • Loading branch information
potiuk committed May 23, 2023
1 parent 511d25d commit 547e352
Show file tree
Hide file tree
Showing 16 changed files with 88 additions and 35 deletions.
10 changes: 10 additions & 0 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -593,6 +593,11 @@ Airflow dependencies
``pip`` - especially when it comes to constraint vs. requirements management.
Installing via ``Poetry`` or ``pip-tools`` is not currently supported.

There are known issues with ``bazel`` that might lead to circular dependencies when using it to install
Airflow. Please switch to ``pip`` if you encounter such problems. ``Bazel`` community works on fixing
the problem in `this PR <https://github.com/bazelbuild/rules_python/pull/1166>`_ so it might be that
newer versions of ``bazel`` will handle it.

If you wish to install airflow using those tools you should use the constraint files and convert
them to appropriate format and workflow that your tool requires.

Expand Down Expand Up @@ -796,6 +801,11 @@ Pinned constraint files
``pip`` - especially when it comes to constraint vs. requirements management.
Installing via ``Poetry`` or ``pip-tools`` is not currently supported.

There are known issues with ``bazel`` that might lead to circular dependencies when using it to install
Airflow. Please switch to ``pip`` if you encounter such problems. ``Bazel`` community works on fixing
the problem in `this PR <https://github.com/bazelbuild/rules_python/pull/1166>`_ so it might be that
newer versions of ``bazel`` will handle it.

If you wish to install airflow using those tools you should use the constraint files and convert
them to appropriate format and workflow that your tool requires.

Expand Down
5 changes: 5 additions & 0 deletions IMAGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,11 @@ This will build the image using command similar to:
``pip`` - especially when it comes to constraint vs. requirements management.
Installing via ``Poetry`` or ``pip-tools`` is not currently supported.

There are known issues with ``bazel`` that might lead to circular dependencies when using it to install
Airflow. Please switch to ``pip`` if you encounter such problems. ``Bazel`` community works on fixing
the problem in `this PR <https://github.com/bazelbuild/rules_python/pull/1166>`_ so it might be that
newer versions of ``bazel`` will handle it.

If you wish to install airflow using those tools you should use the constraint files and convert
them to appropriate format and workflow that your tool requires.

Expand Down
10 changes: 10 additions & 0 deletions LOCAL_VIRTUALENV.rst
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,11 @@ Extra Packages
``pip`` - especially when it comes to constraint vs. requirements management.
Installing via ``Poetry`` or ``pip-tools`` is not currently supported.

There are known issues with ``bazel`` that might lead to circular dependencies when using it to install
Airflow. Please switch to ``pip`` if you encounter such problems. ``Bazel`` community works on fixing
the problem in `this PR <https://github.com/bazelbuild/rules_python/pull/1166>`_ so it might be that
n ewer versions of ``bazel`` will handle it.

If you wish to install airflow using those tools you should use the constraint files and convert
them to appropriate format and workflow that your tool requires.

Expand Down Expand Up @@ -136,6 +141,11 @@ To create and initialize the local virtualenv:
``pip`` - especially when it comes to constraint vs. requirements management.
Installing via ``Poetry`` or ``pip-tools`` is not currently supported.

There are known issues with ``bazel`` that might lead to circular dependencies when using it to install
Airflow. Please switch to ``pip`` if you encounter such problems. ``Bazel`` community works on fixing
the problem in `this PR <https://github.com/bazelbuild/rules_python/pull/1166>`_ so it might be that
newer versions of ``bazel`` will handle it.

If you wish to install airflow using those tools you should use the constraint files and convert
them to appropriate format and workflow that your tool requires.

Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,11 @@ While it is possible to install Airflow with tools like [Poetry](https://python-
`pip` - especially when it comes to constraint vs. requirements management.
Installing via `Poetry` or `pip-tools` is not currently supported.

There are known issues with ``bazel`` that might lead to circular dependencies when using it to install
Airflow. Please switch to ``pip`` if you encounter such problems. ``Bazel`` community works on fixing
the problem in `this PR <https://github.com/bazelbuild/rules_python/pull/1166>`_ so it might be that
newer versions of ``bazel`` will handle it.

If you wish to install Airflow using those tools, you should use the constraint files and convert
them to the appropriate format and workflow that your tool requires.

Expand Down
1 change: 1 addition & 0 deletions airflow/providers/common/sql/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ versions:
- 1.0.0

dependencies:
- apache-airflow>=2.4.0
- sqlparse>=0.4.2

additional-extras:
Expand Down
3 changes: 2 additions & 1 deletion airflow/providers/ftp/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ versions:
- 1.0.1
- 1.0.0

dependencies: []
dependencies:
- apache-airflow>=2.4.0

integrations:
- integration-name: File Transfer Protocol (FTP)
Expand Down
1 change: 1 addition & 0 deletions airflow/providers/http/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ versions:
- 1.0.0

dependencies:
- apache-airflow>=2.4.0
# The 2.26.0 release of requests got rid of the chardet LGPL mandatory dependency, allowing us to
# release it as a requirement for airflow
- requests>=2.26.0
Expand Down
3 changes: 2 additions & 1 deletion airflow/providers/imap/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ versions:
- 1.0.1
- 1.0.0

dependencies: []
dependencies:
- apache-airflow>=2.4.0

integrations:
- integration-name: Internet Message Access Protocol (IMAP)
Expand Down
1 change: 1 addition & 0 deletions airflow/providers/sqlite/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ versions:
- 1.0.0

dependencies:
- apache-airflow>=2.4.0
- apache-airflow-providers-common-sql>=1.3.1

integrations:
Expand Down
14 changes: 0 additions & 14 deletions dev/provider_packages/PROVIDER_INDEX_TEMPLATE.rst.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -56,20 +56,6 @@ Requirements

The minimum Apache Airflow version supported by this provider package is ``{{ MIN_AIRFLOW_VERSION }}``.

{%- if PREINSTALLED_PROVIDER %}

This provider package is preinstalled by default when Apache Airflow is installed. You do not need to
install it separately. You can upgrade and downgrade it independently of Apache Airflow package though.

.. note::

The minimum Apache Airflow version for this package is {{ MIN_AIRFLOW_VERSION }} and it will fail
import at runtime if the version of Airflow is lower even if there is no requirement specified in
the dependencies - this is because the provider is preinstalled and specifying minimum Apache
Airflow version would create a dependency cycle, which confuses dependency tools.

{%- endif %}

{%- if PIP_REQUIREMENTS %}

{{ PIP_REQUIREMENTS_TABLE_RST | safe}}
Expand Down
7 changes: 3 additions & 4 deletions dev/provider_packages/prepare_provider_packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -1348,10 +1348,9 @@ def update_min_airflow_version(provider_package_id: str, version_suffix: str):
context=jinja_context,
target_path=provider_details.source_provider_package_path,
)
if not jinja_context["PREINSTALLED_PROVIDER"]:
replace_min_airflow_version_in_provider_yaml(
context=jinja_context, target_path=provider_details.source_provider_package_path
)
replace_min_airflow_version_in_provider_yaml(
context=jinja_context, target_path=provider_details.source_provider_package_path
)


def update_setup_files(
Expand Down
20 changes: 14 additions & 6 deletions docs/apache-airflow-providers/installing-from-pypi.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,20 @@ Installation tools

Only ``pip`` installation is currently officially supported.

While there are some successes with using other tools like `poetry <https://python-poetry.org/>`_ or
`pip-tools <https://pypi.org/project/pip-tools/>`_, they do not share the same workflow as
``pip`` - especially when it comes to constraint vs. requirements management.
Installing via ``Poetry`` or ``pip-tools`` is not currently supported. If you wish to install airflow
using those tools you should use the constraints and convert them to appropriate
format and workflow that your tool requires.
.. note::

While there are some successes with using other tools like `poetry <https://python-poetry.org/>`_ or
`pip-tools <https://pypi.org/project/pip-tools/>`_, they do not share the same workflow as
``pip`` - especially when it comes to constraint vs. requirements management.
Installing via ``Poetry`` or ``pip-tools`` is not currently supported. If you wish to install airflow
using those tools you should use the constraints and convert them to appropriate
format and workflow that your tool requires.

There are known issues with ``bazel`` that might lead to circular dependencies when using it to install
Airflow. Please switch to ``pip`` if you encounter such problems. ``Bazel`` community works on fixing
the problem in `this PR <https://github.com/bazelbuild/rules_python/pull/1166>`_ so it might be that
newer versions of ``bazel`` will handle it.


Typical command to install airflow from PyPI looks like below (you need to use the right Airflow version and Python version):

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ time of writing: 1.10.15) and then to download this package and run the script a
``pip`` - especially when it comes to constraint vs. requirements management.
Installing via ``Poetry`` or ``pip-tools`` is not currently supported.

There are known issues with ``bazel`` that might lead to circular dependencies when using it to install
Airflow. Please switch to ``pip`` if you encounter such problems. ``Bazel`` community works on fixing
the problem in `this PR <https://github.com/bazelbuild/rules_python/pull/1166>`_ so it might be that
newer versions of ``bazel`` will handle it.


If you wish to install airflow using those tools you should use the constraint files and convert
them to appropriate format and workflow that your tool requires.

Expand Down
19 changes: 13 additions & 6 deletions docs/apache-airflow/installation/installing-from-pypi.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,19 @@ Installation tools

Only ``pip`` installation is currently officially supported.

While there are some successes with using other tools like `poetry <https://python-poetry.org/>`_ or
`pip-tools <https://pypi.org/project/pip-tools/>`_, they do not share the same workflow as
``pip`` - especially when it comes to constraint vs. requirements management.
Installing via ``Poetry`` or ``pip-tools`` is not currently supported. If you wish to install airflow
using those tools you should use the constraints and convert them to appropriate
format and workflow that your tool requires.
.. note::

While there are some successes with using other tools like `poetry <https://python-poetry.org/>`_ or
`pip-tools <https://pypi.org/project/pip-tools/>`_, they do not share the same workflow as
``pip`` - especially when it comes to constraint vs. requirements management.
Installing via ``Poetry`` or ``pip-tools`` is not currently supported. If you wish to install airflow
using those tools you should use the constraints and convert them to appropriate
format and workflow that your tool requires.

There are known issues with ``bazel`` that might lead to circular dependencies when using it to install
Airflow. Please switch to ``pip`` if you encounter such problems. ``Bazel`` community works on fixing
the problem in `this PR <https://github.com/bazelbuild/rules_python/pull/1166>`_ so it might be that
newer versions of ``bazel`` will handle it.

Typical command to install airflow from PyPI looks like below:

Expand Down
5 changes: 5 additions & 0 deletions docs/apache-airflow/start.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ This quick start guide will help you bootstrap an Airflow standalone instance on
``pip`` - especially when it comes to constraint vs. requirements management.
Installing via ``Poetry`` or ``pip-tools`` is not currently supported.

There are known issues with ``bazel`` that might lead to circular dependencies when using it to install
Airflow. Please switch to ``pip`` if you encounter such problems. ``Bazel`` community works on fixing
the problem in `this PR <https://github.com/bazelbuild/rules_python/pull/1166>`_ so it might be that
newer versions of ``bazel`` will handle it.

If you wish to install Airflow using those tools you should use the constraint files and convert
them to appropriate format and workflow that your tool requires.

Expand Down
13 changes: 10 additions & 3 deletions generated/provider_dependencies.json
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,7 @@
},
"common.sql": {
"deps": [
"apache-airflow>=2.4.0",
"sqlparse>=0.4.2"
],
"cross-providers-deps": [],
Expand Down Expand Up @@ -356,7 +357,9 @@
"excluded-python-versions": []
},
"ftp": {
"deps": [],
"deps": [
"apache-airflow>=2.4.0"
],
"cross-providers-deps": [],
"excluded-python-versions": []
},
Expand Down Expand Up @@ -467,6 +470,7 @@
"http": {
"deps": [
"aiohttp",
"apache-airflow>=2.4.0",
"asgiref",
"requests>=2.26.0",
"requests_toolbelt"
Expand All @@ -475,7 +479,9 @@
"excluded-python-versions": []
},
"imap": {
"deps": [],
"deps": [
"apache-airflow>=2.4.0"
],
"cross-providers-deps": [],
"excluded-python-versions": []
},
Expand Down Expand Up @@ -795,7 +801,8 @@
},
"sqlite": {
"deps": [
"apache-airflow-providers-common-sql>=1.3.1"
"apache-airflow-providers-common-sql>=1.3.1",
"apache-airflow>=2.4.0"
],
"cross-providers-deps": [
"common.sql"
Expand Down

0 comments on commit 547e352

Please sign in to comment.