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
Yesterday a new 37.0.0 version of cryptography has been released. aliyun-python-sdk-core doesn't have an upper bound for this version in the setup.py so it started picking cryptography 37.0.0 on pip install aliyun-python-sdk-core. When a package with aliyun-python-sdk-core and cryptography 37.0.0 is deployed to Function Compute with Python 3.6, the FC fails with the error below on invoke:
[ERROR] {'errorMessage': "Module initialization error: 'module 'lib' has no attribute 'X509_V_FLAG_CB_ISSUER_CHECK''", 'errorType': 'UserCodeError', 'stackTrace': ["AttributeError: module 'lib' has no attribute 'X509_V_FLAG_CB_ISSUER_CHECK'"]}
I believe that aliyun-python-sdk-core should require cryptography <=37.0.0,
The text was updated successfully, but these errors were encountered:
python 3.6
2.13.36
Initialization of Function Compute
Yesterday a new 37.0.0 version of cryptography has been released.
aliyun-python-sdk-core
doesn't have an upper bound for this version in the setup.py so it started picking cryptography 37.0.0 onpip install aliyun-python-sdk-core
. When a package withaliyun-python-sdk-core
and cryptography 37.0.0 is deployed to Function Compute with Python 3.6, the FC fails with the error below on invoke:I believe that
aliyun-python-sdk-core
should require cryptography <=37.0.0,The text was updated successfully, but these errors were encountered: