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
firebase-admin==6.1.0 package requires urllib3<3,>=1.21.1 and so pip installs urllib3==2.0.2, but with urllib3>=2.0.0, which removed attribute 'strict' from 'HTTPResponse' object, firebase_admin.auth.verify_id_token(token) raises an error AttributeError: 'HTTPResponse' object has no attribute 'strict'.
...
File "\Lib\site-packages\cachecontrol\serialize.py", line 54, in dumps
u"strict": response.strict,
^^^^^^^^^^^^^^^
AttributeError: 'HTTPResponse' object has no attribute 'strict'
The text was updated successfully, but these errors were encountered:
This seems to have been an issue in the cachecontrol library and was tracked in psf/cachecontrol#292. It was resolved in psf/cachecontrol#301 and fixed in cachecontrol >= 0.12.13. We'll need to bump the minimum version to match that as well.
Steps to reproduce:
firebase-admin==6.1.0
package requiresurllib3<3,>=1.21.1
and so pip installsurllib3==2.0.2
, but withurllib3>=2.0.0
, which removed attribute 'strict' from 'HTTPResponse' object,firebase_admin.auth.verify_id_token(token)
raises an errorAttributeError: 'HTTPResponse' object has no attribute 'strict'
.Relevant Code:
The text was updated successfully, but these errors were encountered: