This is an automated email from the ASF dual-hosted git repository. potiuk pushed a commit to branch v2-3-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 761b2d0f7f84d9d62355d9f211fe334f4994b900 Author: Jarek Potiuk <[email protected]> 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. (cherry picked from commit 477f907b347511a1b14053a418ba258db6c3ed99) --- images/breeze/output-commands-hash.txt | 5 +++++ setup.py | 12 +++++------- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/images/breeze/output-commands-hash.txt b/images/breeze/output-commands-hash.txt new file mode 100644 index 0000000000..1b791a7afb --- /dev/null +++ b/images/breeze/output-commands-hash.txt @@ -0,0 +1,5 @@ + +# This file is automatically generated by pre-commit. If you have a conflict with this file +# Please do not solve it but run `breeze regenerate-command-images`. +# This command should fix the conflict and regenerate help images that you have conflict with. +518a158901cde1a5a889d37086eca87e diff --git a/setup.py b/setup.py index 16fcb73102..20f3d00432 100644 --- a/setup.py +++ b/setup.py @@ -202,7 +202,7 @@ amazon = [ 'mypy-boto3-redshift-data>=1.21.0', ] apache_beam = [ - 'apache-beam>=2.33.0', + 'apache-beam>=2.39.0', ] arangodb = ['python-arango>=7.3.2'] asana = ['asana>=0.10'] @@ -231,6 +231,8 @@ azure = [ 'azure-storage-blob>=12.7.0,<12.9.0', 'azure-storage-common>=2.1.0', 'azure-storage-file>=2.1.0', + # 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', @@ -488,9 +490,7 @@ postgres = [ 'psycopg2-binary>=2.7.4', ] presto = [ - # The limit to Presto 0.8 for unknown reason - # TODO: Remove the limit - 'presto-python-client>=0.7.0,<0.8', + 'presto-python-client>=0.8.2', pandas_requirement, ] psrp = [ @@ -622,9 +622,7 @@ devel_only = [ 'jira', 'jsondiff', 'mongomock', - # Version 3.1.10 is breaking main bump to 3.1.11 when released. - # Fix already merged but was not released https://github.com/spulec/moto/pull/5165 - 'moto[glue]>=3.1.6, <3.1.10', + 'moto[cloudformation, glue]>=3.1.12', 'parameterized', 'paramiko', 'pipdeptree',
