-
Notifications
You must be signed in to change notification settings - Fork 587
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
python3.12 support #520
Comments
有解决方案了吗? |
我是本地改了代码,把 import 换成了 |
我去阿里云提个工单问问 |
https://docs.python.org/zh-cn/3.11/library/ssl.html#ssl.wrap_socket |
原来是把urllib3的代码直接拷贝进来的啊 |
是,很多库也都这么干为了版本稳定,也可以考虑自己把新版本的库源码copy进来 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
python更新到3.12后,删除了ssl.wrap_socket() 改为 ssl.SSLContext.wrap_socket https://docs.python.org/3/whatsnew/3.12.html#ssl
导致 site-packages/aliyunsdkcore/vendored/requests/packages/urllib3/util/ssl_.py line 46 中导入PROTOCOL_SSLv23失败
The text was updated successfully, but these errors were encountered: