1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-18 04:18:10 +00:00

chore(python/stellar): bump stellar-sdk to 5.0.0.

[no changelog]
This commit is contained in:
Jun Luo 2021-10-08 08:39:00 +08:00 committed by matejcik
parent b3ac52e98c
commit 3af00f4181
3 changed files with 3 additions and 3 deletions

View File

@ -2,4 +2,4 @@ hidapi >= 0.7.99.post20
rlp >= 1.1.0 rlp >= 1.1.0
web3 >= 4.8 web3 >= 4.8
Pillow Pillow
stellar-sdk>=4.0.0,<5.0.0 stellar-sdk>=4.0.0,<6.0.0

View File

@ -22,7 +22,7 @@ extras_require = {
"ethereum": ["rlp>=1.1.0", "web3>=4.8"], "ethereum": ["rlp>=1.1.0", "web3>=4.8"],
"qt-widgets": ["PyQt5"], "qt-widgets": ["PyQt5"],
"extra": ["Pillow"], "extra": ["Pillow"],
"stellar": ["stellar-sdk>=4.0.0,<5.0.0"], "stellar": ["stellar-sdk>=4.0.0,<6.0.0"],
} }
extras_require["full"] = sum(extras_require.values(), []) extras_require["full"] = sum(extras_require.values(), [])

View File

@ -271,7 +271,7 @@ def _read_amount(amount: str) -> int:
def _read_price(price: Union["Price", str, Decimal]) -> "Price": def _read_price(price: Union["Price", str, Decimal]) -> "Price":
# In the coming stellar-sdk 5.x, the type of price must be Price, # In the coming stellar-sdk 6.x, the type of price must be Price,
# at that time we can remove this function # at that time we can remove this function
if isinstance(price, Price): if isinstance(price, Price):
return price return price