Skip to content

Commit

Permalink
Limit azure-servicebus to not be used on ARM (#24635)
Browse files Browse the repository at this point in the history
Azure service bus uses uamqp which does not build for ARM architecture
and we need to disable it as a dependency for ARM.
  • Loading branch information
potiuk authored Jun 24, 2022
1 parent 2113d72 commit 477f907
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,8 @@ def write_version(filename: str = os.path.join(*[my_dir, "airflow", "git_version
'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',
Expand Down

0 comments on commit 477f907

Please sign in to comment.