This is an automated email from the ASF dual-hosted git repository. ephraimanierobi pushed a commit to branch v2-6-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 25d3b68a7b8988f292087d0996ea810d8654e8c4 Author: David Shur <[email protected]> AuthorDate: Fri May 5 08:39:33 2023 -0700 fix EXTRAS_DEPENDENCIES of apache-hive (#31068) (cherry picked from commit 9e43d4aee3b86134b1b9a42f988fb9d3975dbaf7) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index dfa817e5d2..8897ad890b 100644 --- a/setup.py +++ b/setup.py @@ -814,7 +814,7 @@ def replace_extra_dependencies_with_provider_packages(extra: str, providers: lis elif extra == "apache.hive": # We moved the hive macros to the hive provider, and they are available in hive provider only as of # 5.1.0 version only, so we have to make sure minimum version is used - EXTRAS_DEPENDENCIES[extra] = ["apache-airflow-providers-hive>=5.1.0"] + EXTRAS_DEPENDENCIES[extra] = ["apache-airflow-providers-apache-hive>=5.1.0"] else: EXTRAS_DEPENDENCIES[extra] = [ get_provider_package_name_from_package_id(package_name) for package_name in providers
