eladkal commented on code in PR #30032: URL: https://github.com/apache/airflow/pull/30032#discussion_r1132995976
########## 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: Users may install the providers separately with their own constraint mechanism which depends on users list of requested packages may result in using older versions. PIP always tries to have the latest version possible but if it can't then it start backtrack to older versions. By setting lower limit we instruct PIP not to look below this version. -- 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]
