We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
所以未来如果要继续支持 Python 2 的话,会越来越麻烦,可能很多地方都要写两份代码(其实现在 SDK 有些地方就已经是这么做了,未来随着依赖库逐渐抛弃 Python 2,这样的分支会越来越多,增加维护的难度),云引擎那边也要修改,根据 Python 版本选择不同的依赖文件(比如 requirements-py2.txt 之类)。
requirements-py2.txt
The text was updated successfully, but these errors were encountered:
gevent 21 又回过头把 python 2.7 的支持加回来了,然后同一份 requirments.txt 里也是可以根据 python 的版本不同指定不同的依赖。所以看起来 Python 2 还能继续支持一阵。
Arrow 说下一个版本将停止支持 Python 2.7 和 Python 3.5
Arrow 的下一个版本(1.0)已经在 2021 年 2 月发布,不支持 Python 2.7 Pendulum (功能类似 Arrow 的替代品)目前还支持 Python 2.7,未来可以考虑把 arrow 换成 Pendulum 如果还要继续支持 Python 2 的话。
Sorry, something went wrong.
另外贴一下统计数据,近 30 日云引擎 Python 运行时请求数:
未来可以考虑把 arrow 换成 Pendulum 如果还要继续支持 Python 2 的话。
换 Pendulum 也许还能解决 arrow 在 Windows 平台上不支持负的 unix 时间的问题 (工单 37855)
@pytest.mark.skipif( os.name == "nt", reason="negative timestamps are not supported on Windows" )
No branches or pull requests
所以未来如果要继续支持 Python 2 的话,会越来越麻烦,可能很多地方都要写两份代码(其实现在 SDK 有些地方就已经是这么做了,未来随着依赖库逐渐抛弃 Python 2,这样的分支会越来越多,增加维护的难度),云引擎那边也要修改,根据 Python 版本选择不同的依赖文件(比如
requirements-py2.txt
之类)。The text was updated successfully, but these errors were encountered: