Skip to content

Release v1.2.7 - urllib3 import fix

Compare
Choose a tag to compare
@VanDavv VanDavv released this 19 Nov 11:15
· 68 commits to master since this release

In this release, we have fixed an issue reported by our users while using Google Colab. There, after importing the blobconverter package, the following error occurred

---> 10 from urllib3.util.ssl_ import (
     11     ssl, OP_NO_SSLv2, OP_NO_SSLv3, OP_NO_COMPRESSION,
     12     PROTOCOL_TLS, DEFAULT_CIPHERS,

ImportError: cannot import name 'PROTOCOL_TLS' from 'urllib3.util.ssl_' (/usr/local/lib/python3.7/dist-packages/urllib3/util/ssl_.py)

The issue was caused by the latest versions of the boto3 library, and with this version, we downgraded it to a stable and working one.

To fix the issue without blobconverter update, please run the following code

python -m pip install boto3==1.17.39