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
The latest release of Cryptography, version 2.5, stopped requiring idna. This uncovered an issue in the oci-python-sdk where idna is imported but is not part of the required packages for oci-python-sdk. If you receive an ImportError for idna, you can resolve it by upgrading to oci>=2.1.5 or running pip install idna in your virtual environment containing the oci package.
Here is an snippet from the stack trace for the import error.
File "/lib/python2.7/site-packages/oci/_vendor/urllib3/contrib/pyopenssl.py", line 171, in idna_encode
import idna
ImportError: No module named idna
The text was updated successfully, but these errors were encountered:
The latest release of Cryptography, version 2.5, stopped requiring idna. This uncovered an issue in the oci-python-sdk where idna is imported but is not part of the required packages for oci-python-sdk. If you receive an ImportError for idna, you can resolve it by upgrading to oci>=2.1.5 or running
pip install idna
in your virtual environment containing the oci package.Here is an snippet from the stack trace for the import error.
The text was updated successfully, but these errors were encountered: