-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Potential dependency conflicts between awscli-login and botocore #37
Comments
Suggested Solution
@ddriddle Which solution do you prefer, 1 or 2? |
Removing boto3 because it is completely unnecessary, and incompatible with awscliv2 (See link below). botocore is being used instead where boto3 was used before. boto/boto3#2571 Fixes techservicesillinois#37 Fixes techservicesillinois#44
@NeolithEra thank you for pointing out this dependency conflict and for your offer to address it with a pull request which are always welcome. I am resolving this issue by dropping the |
Removing boto3 because it is completely unnecessary, and incompatible with awscliv2 (See link below). botocore is being used instead where boto3 was used before. boto/boto3#2571 Fixes techservicesillinois#37 Fixes techservicesillinois#44
Removing boto3 because it is completely unnecessary, and incompatible with awscliv2 (See link below). botocore is being used instead where boto3 was used before. boto/boto3#2571 Fixes techservicesillinois#37 Fixes techservicesillinois#44
Removing boto3 because it is completely unnecessary, and incompatible with awscliv2 (See link below). botocore is being used instead where boto3 was used before. boto/boto3#2571 Fixes techservicesillinois#37 Fixes techservicesillinois#44
Removing boto3 because it is completely unnecessary, and incompatible with awscliv2 (See link below). botocore is being used instead where boto3 was used before. boto/boto3#2571 Fixes techservicesillinois#37 Fixes techservicesillinois#44
Removing boto3 because it is completely unnecessary, and incompatible with awscliv2 (See link below). botocore is being used instead where boto3 was used before. boto/boto3#2571 Fixes #37 Fixes #44
Hi, as shown in the following full dependency graph of awscli-login, awscli-login requires botocore * , while the installed version of boto3(1.10.23) requires botocore >=1.13.23,<1.14.0.
According to Pip's “first found wins” installation strategy, botocore 1.13.23 is the actually installed version.
Although the first found package version botocore 1.13.23 just satisfies the later dependency constraint (botocore >=1.13.23,<1.14.0), it will lead to a build failure once developers release a newer version of botocore.
Dependency tree--------
Thanks for your attention.
Best,
Neolith
The text was updated successfully, but these errors were encountered: