This is an automated email from the ASF dual-hosted git repository. potiuk pushed a commit to branch v2-2-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 42dbb118272a31a18f1968ac9ae94410424833ee Author: Jarek Potiuk <[email protected]> AuthorDate: Fri Dec 31 11:00:30 2021 +0100 Add known warning generated by snowflake new version (#20604) The new snowflake library version generates a different warning message as they bumped pyarrow version used. This PR adds the warning to known warnings. (cherry picked from commit 80bccfded3d45220a7f6e80c4e616ab3164da198) --- dev/provider_packages/prepare_provider_packages.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev/provider_packages/prepare_provider_packages.py b/dev/provider_packages/prepare_provider_packages.py index 0b534c2..80410a4 100755 --- a/dev/provider_packages/prepare_provider_packages.py +++ b/dev/provider_packages/prepare_provider_packages.py @@ -2121,6 +2121,11 @@ KNOWN_DEPRECATED_MESSAGES: Set[Tuple[str, str]] = { " adheres to: 'pyarrow<3.1.0,>=3.0.0; extra == \"pandas\"'", "snowflake", ), + ( + "You have an incompatible version of 'pyarrow' installed (6.0.1), please install a version that" + " adheres to: 'pyarrow<5.1.0,>=5.0.0; extra == \"pandas\"'", + "snowflake", + ), ("SelectableGroups dict interface is deprecated. Use select.", "kombu"), ("The module cloudant is now deprecated. The replacement is ibmcloudant.", "cloudant"), }
