syedahsn commented on code in PR #30032: URL: https://github.com/apache/airflow/pull/30032#discussion_r1132992805
########## airflow/providers/amazon/provider.yaml: ########## @@ -67,6 +66,7 @@ dependencies: - mypy-boto3-rds>=1.24.0 - mypy-boto3-redshift-data>=1.24.0 - mypy-boto3-appflow>=1.24.0 + - aiobotocore[boto3] Review Comment: The boto3 version comes out to be 1.26.76, with the constraints I had. ``` root@fba2b84bfa3f:/opt/airflow# pip show aiobotocore Name: aiobotocore Version: 2.5.0 Summary: Async client for aws services using botocore and aiohttp Home-page: https://github.com/aio-libs/aiobotocore Author: Nikolay Novik Author-email: [email protected] License: Apache License 2.0 Location: /usr/local/lib/python3.7/site-packages Requires: aiohttp, aioitertools, botocore, wrapt Required-by: root@fba2b84bfa3f:/opt/airflow# pip show botocore Name: botocore Version: 1.29.76 Summary: Low-level, data-driven core of boto 3. Home-page: https://github.com/boto/botocore Author: Amazon Web Services Author-email: License: Apache License 2.0 Location: /usr/local/lib/python3.7/site-packages Requires: jmespath, python-dateutil, urllib3 Required-by: aiobotocore, aws-xray-sdk, boto3, moto, redshift-connector, s3transfer root@fba2b84bfa3f:/opt/airflow# pip show boto3 Name: boto3 Version: 1.26.76 Summary: The AWS SDK for Python Home-page: https://github.com/boto/boto3 Author: Amazon Web Services Author-email: License: Apache License 2.0 Location: /usr/local/lib/python3.7/site-packages Requires: botocore, jmespath, s3transfer Required-by: aws-sam-translator, moto, redshift-connector, watchtower root@fba2b84bfa3f:/opt/airflow# ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
