2016-02-19 62 views
0

braintree git repo在README中说它与Python 3.4兼容,但caniusepython3告诉我它不是。我可以使用braintree sdk与python3

我可以放心地使用它吗?

$ 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 

回答

2

完全披露:我在布伦特里工作。如果您有任何其他问题,请随时联系support

Braintree Python库与Python 3.3及更高版本兼容。

caniusepython3使用PyPi中的list of classifiers来确定项目是否与Python 3兼容。由于braintree has no classifiers listed on PyPi,它不被列为 Python 3兼容。

Braintree库的唯一依赖项是requests,它被列为兼容。

我们将更新PyPI以反映兼容性。

相关问题