This is an automated email from the ASF dual-hosted git repository. potiuk pushed a commit to branch v1-10-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit ffbde530c9778412218f037671a40a2ba1c46f9e Author: Jarek Potiuk <[email protected]> AuthorDate: Wed May 13 11:16:15 2020 +0200 The librabbitmq library stopped installing for python3.7 (#8853) When preparing backport relases I found that rabbitmq was not included in the "devel_ci" extras. It turned out that librabbitmq was not installing in python3.7 and the reason it turned out to be that librabbitmq is not maintained for 2 years already and it has been replaced by py-amqp library. The pythhon py-amqp library has been improved using cython compilation, so it became production ready and librabbitmq has been abandoned. We are switching to the py-amqp library here and adding rabbitmq back to "devel_ci" dependencies. Details in: https://github.com/celery/librabbitmq/issues/153 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 8c8d9a4..9166279 100644 --- a/setup.py +++ b/setup.py @@ -341,7 +341,7 @@ qds = [ 'qds-sdk>=1.10.4', ] rabbitmq = [ - 'librabbitmq>=1.6.1', + 'amqp', ] redis = [ 'redis~=3.2', @@ -450,7 +450,7 @@ devel_all = (all_dbs + atlas + aws + celery + cgroups + crypto + datadog + devel + doc + docker + elasticsearch + gcp + grpc + hashicorp + jdbc + jenkins + kerberos + kubernetes + ldap + oracle + papermill + password + - redis + samba + segment + sendgrid + sentry + slack + snowflake + ssh + + rabbitmq + redis + samba + segment + sendgrid + sentry + slack + snowflake + ssh + virtualenv + webhdfs + zendesk) # Snakebite is not Python 3 compatible :'(
