2016-02-19 67 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以反映兼容性。

相關問題