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 providers separately with their own list of requirements which may result in using older versions of boto3. Also some users have thier own constraints mechanism that takes into account internal packages and others. 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 and if this happens then PIP will stop and raise error -- 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]
