You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When creating the requirements.txt file by running the update-requirements script, two hashes were added to for our urllib dependency when we only expected one.
This is due to a bug in the script that uses startswith command to decide which package to grab -- two different versions of the same package can satisfy the check condition. E.g. urllib3-1.24.1 and urllib3-1.24 both start with urllib3-1.24.
The text was updated successfully, but these errors were encountered:
Description
When creating the
requirements.txt
file by running theupdate-requirements
script, two hashes were added to for our urllib dependency when we only expected one.This is due to a bug in the script that uses
startswith
command to decide which package to grab -- two different versions of the same package can satisfy the check condition. E.g.urllib3-1.24.1
andurllib3-1.24
both start withurllib3-1.24
.The text was updated successfully, but these errors were encountered: