Skip to content
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

limit upper bound of dependencies in setup.py and add six as explicit dependency #2841

Closed

Conversation

pelletier2017
Copy link

@pelletier2017 pelletier2017 commented May 18, 2021

The dependency websocket-client recently released version 1.0.0 which removed six as a dependency. This breaks because docker/auth.py uses six without adding it as a dependency in setup.py.

Version 1.16.0 of six is used because it was the only one I've tested it with but the lower bound could likely be lowered.

This addresses #2840

setup.py Outdated Show resolved Hide resolved
Signed-off-by: Andrew Pelletier <pelletierra@gmail.com>
@pelletier2017 pelletier2017 changed the title limit upper bound of websocket-client dependency in setup.py limit upper bound of dependencies in setup.py and add six as explicit dependency May 20, 2021
@pelletier2017
Copy link
Author

Updated with input from @till about the other dependencies and added explicit dependency for six which is used in the project.

'requests >= 2.14.2, != 2.18.0',
'websocket-client >= 0.32.0, < 1',
'requests >= 2.14.2, != 2.18.0, < 3',
'six >= 1.16.0, < 2',

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should not be added here, this was resolved in a9748a8

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JonZeolla what's the best way to get people's attention to PRs? 😅

@milas
Copy link
Member

milas commented Jul 27, 2022

We no longer use six / support Python 2

@milas milas closed this Jul 27, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants