我可以将braintree sdk与python3一起使用吗

2024-03-28 19:13:52 发布

您现在位置:Python中文网/ 问答频道 /正文

braintree git repo在README中说它与python3.4兼容,但caniusepython3告诉我它不兼容。你知道吗

我能安全地使用它吗?你知道吗

$ caniusepython3 -r requirements.txt 
Finding and checking dependencies ...
[WARNING] Stale overrides: {'reportlab'}

You need 1 project to transition to Python 3.
Of that 1 project, 1 has no direct dependencies blocking its transition:

    braintree
$
$ more requirements.txt 
braintree==3.24.0
requests==2.9.1

Tags: andtogittxtprojectdependenciesreporeadme
1条回答
网友
1楼 · 发布于 2024-03-28 19:13:52

完全披露:我在Braintree工作。如果您还有任何问题,请随时联系support

Braintree Python库与python3.3及更高版本兼容。你知道吗

caniusepython3使用PyPi中的list of classifiers来确定项目是否与python3兼容。因为braintree has no classifiers listed on PyPi,它没有列为 Python 3兼容。你知道吗

Braintree库的唯一依赖项是requests,它被列为compatible。你知道吗

我们将更新PyPI以反映兼容性。你知道吗

相关问题 更多 >