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
If a user is starting with a lower version of requests than 2.5.0, they will see failures coming from this module (when attempting to disable the warning messages). We need to set the requests version >= 2.5.0. Otherwise folks get an error:
if StrictVersion(requests_version) < '2.9.1':
requests.packages.urllib3.disable_warnings()
AttributeError: 'module' object has no attribute 'packages'
The text was updated successfully, but these errors were encountered:
If a user is starting with a lower version of requests than 2.5.0, they will see failures coming from this module (when attempting to disable the warning messages). We need to set the requests version >= 2.5.0. Otherwise folks get an error:
The text was updated successfully, but these errors were encountered: