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/24 09:39:25 UTC

[airflow] branch main updated: Limit azure-servicebus to not be used on ARM (#24635)

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 477f907b34 Limit azure-servicebus to not be used on ARM (#24635)
477f907b34 is described below

commit 477f907b347511a1b14053a418ba258db6c3ed99
Author: Jarek Potiuk <ja...@polidea.com>
AuthorDate: Fri Jun 24 11:39:10 2022 +0200

    Limit azure-servicebus to not be used on ARM (#24635)
    
    Azure service bus uses uamqp which does not build for ARM architecture
    and we need to disable it as a dependency for ARM.
---
 setup.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index c997322b12..b4baa640b4 100644
--- a/setup.py
+++ b/setup.py
@@ -232,7 +232,8 @@ azure = [
     'azure-storage-blob>=12.7.0,<12.9.0',
     'azure-storage-common>=2.1.0',
     'azure-storage-file>=2.1.0',
-    'azure-servicebus>=7.6.1',
+    # Limited due to https://github.com/Azure/azure-uamqp-python/issues/191
+    'azure-servicebus>=7.6.1; platform_machine != "aarch64"',
 ]
 cassandra = [
     'cassandra-driver>=3.13.0',