urllib3 requirements-docs lock dependency is implemented opposite of what comment suggests #4388
Closed
1 task done
Labels
bug
This issue is a confirmed bug.
potential-regression
Marking this issue as a potential regression to be checked by team member
response-requested
Waiting on additional information or feedback.
Describe the bug
In the file https://github.com/boto/boto3/blob/develop/requirements-docs.txt:
The comment indicates that any time python<3.10 is used, the version of urllib3 should be greater than 2.0.
However, the lock file reverses this relation, where only older versions of urllib3 are used.
Regression Issue
Expected Behavior
urllib3>2.0 ; python_version < "3.10"
Current Behavior
urllib3<2.0 ; python_version < "3.10"
Reproduction Steps
N/A
Possible Solution
The comment should be updated to indicate what it means to "avoid urllib3 2.x", and I think the change should be updated to:
urllib3<2.0 ; python_version < "3.10"
Additional Information/Context
No response
SDK version used
N/A
Environment details (OS name and version, etc.)
python <= 3.10
The text was updated successfully, but these errors were encountered: